diff --git a/src/basic/crate-module/use.md b/src/basic/crate-module/use.md index 8ff5d9da..2ae8148d 100644 --- a/src/basic/crate-module/use.md +++ b/src/basic/crate-module/use.md @@ -57,7 +57,7 @@ pub fn eat_at_restaurant() { - 需要引入同一个模块的多个函数 - 作用域中存在同名函数 -在以上两种情况中,使用 `use front_of_house::hosting` 引入模块要比 `use front_of_house::hosting::add_to_waitlist;` 引入函数更好。 +在以上两种情况中,使用 `use front_of_house::hosting;` 引入模块要比 `use front_of_house::hosting::add_to_waitlist;` 引入函数更好。 例如,如果想使用 `HashMap`,那么直接引入该结构体是比引入模块更好的选择,因为在 `collections` 模块中,我们只需要使用一个 `HashMap` 结构体: