diff --git a/zh-CN/src/result-panic/result.md b/zh-CN/src/result-panic/result.md index ffb1968..a31d5b2 100644 --- a/zh-CN/src/result-panic/result.md +++ b/zh-CN/src/result-panic/result.md @@ -125,7 +125,7 @@ fn multiply(n1_str: &str, n2_str: &str) -> Result { } } -// 重写上面的 `multiply` ,让它尽量简介 +// 重写上面的 `multiply` ,让它尽量简洁 // 提示:使用 `and_then` 和 `map` fn multiply1(n1_str: &str, n2_str: &str) -> Result { // 实现...