From d73c4fd4e17e4c6d7a1a53df1766ce11242794a8 Mon Sep 17 00:00:00 2001 From: Liang Liu Date: Tue, 8 Feb 2022 22:57:52 +1100 Subject: [PATCH 1/2] Fixed typo --- book/contents/advance/crate-module/use.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/advance/crate-module/use.md b/book/contents/advance/crate-module/use.md index a63c4aea..5416dda4 100644 --- a/book/contents/advance/crate-module/use.md +++ b/book/contents/advance/crate-module/use.md @@ -185,7 +185,7 @@ use std::io::{self, Write}; - `use self::xxx`,表示加载当前模块中的 `xxx`。此时 `self` 可省略 - `use xxx::{self, yyy}`,表示,加载当前路径下模块 `xxx` 本身,以及模块 `xxx` 下的 `yyy` -## 使用*引入模块下的所有项* +## 使用`*`引入模块下的所有项 对于之前一行一行引入 `std::collections` 的方式,我们还可以使用 ```rust use std::collections::*; From 966a98336cdbeafc51bcbae887f6b4f1d24517cf Mon Sep 17 00:00:00 2001 From: Sunface Date: Thu, 10 Feb 2022 09:42:21 +0800 Subject: [PATCH 2/2] Update book/contents/advance/crate-module/use.md --- book/contents/advance/crate-module/use.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/contents/advance/crate-module/use.md b/book/contents/advance/crate-module/use.md index 5416dda4..05a2c713 100644 --- a/book/contents/advance/crate-module/use.md +++ b/book/contents/advance/crate-module/use.md @@ -185,7 +185,7 @@ use std::io::{self, Write}; - `use self::xxx`,表示加载当前模块中的 `xxx`。此时 `self` 可省略 - `use xxx::{self, yyy}`,表示,加载当前路径下模块 `xxx` 本身,以及模块 `xxx` 下的 `yyy` -## 使用`*`引入模块下的所有项 +## 使用 `*` 引入模块下的所有项 对于之前一行一行引入 `std::collections` 的方式,我们还可以使用 ```rust use std::collections::*;