From f58840524a79081a24c0aa5da227c95af1ddc0d9 Mon Sep 17 00:00:00 2001 From: 7uvss <46097184+7uvss@users.noreply.github.com> Date: Wed, 19 Jan 2022 11:36:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=94=99=E5=88=AB=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 显示 -> 显式 --- book/contents/basic/base-type/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/basic/base-type/index.md b/book/contents/basic/base-type/index.md index ac729fae..b485acad 100644 --- a/book/contents/basic/base-type/index.md +++ b/book/contents/basic/base-type/index.md @@ -30,5 +30,5 @@ error[E0282]: type annotations needed | ^^^^^ consider giving `guess` a type ``` -因此我们需要提供给编译器更多的信息,例如给`guess`变量一个**显示的类型标注**: `let guess: i32 = ...` 或者`"42".parse::()`. +因此我们需要提供给编译器更多的信息,例如给`guess`变量一个**显式的类型标注**: `let guess: i32 = ...` 或者`"42".parse::()`.