From 18c7443e73ad87823158b822264f2cadabfb46e5 Mon Sep 17 00:00:00 2001 From: caaaaaat <875411010@qq.com> Date: Mon, 2 Oct 2023 16:07:38 +0800 Subject: [PATCH] =?UTF-8?q?Update=20result.md=EF=BC=8C=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=BA=86=E9=94=99=E5=88=AB=E5=AD=97=EF=BC=9Azh-CN/src/result-p?= =?UTF-8?q?anic/result.md=EF=BC=8C=E7=AC=AC5=E9=A2=98=E2=80=98//=20?= =?UTF-8?q?=E9=87=8D=E5=86=99=E4=B8=8A=E9=9D=A2=E7=9A=84=20=20=EF=BC=8C?= =?UTF-8?q?=E8=AE=A9=E5=AE=83=E5=B0=BD=E9=87=8F=E7=AE=80=E4=BB=8B=E2=80=99?= =?UTF-8?q?=E6=B3=A8=E9=87=8A=E4=B8=AD=E7=9A=84=E2=80=98=E7=AE=80=E4=BB=8B?= =?UTF-8?q?=E2=80=99->=E2=80=98=E7=AE=80=E6=B4=81=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- zh-CN/src/result-panic/result.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { // 实现...