Merge pull request #690 from logicskky/patch-1

Update ch07-04-bringing-paths-into-scope-with-the-use-keyword.md
This commit is contained in:
KaiserY 2023-01-28 12:44:07 +08:00 committed by GitHub
commit c04bd65e01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@
{{#include ../listings/ch07-managing-growing-projects/listing-07-12/output.txt}}
```
注意这里还有一个警告说 `use` 在其作用域内不再被使用!为了修复这个问题,也将 `use` 移动到 `customer` 模块内,或者在父模块通过 `customer` 模块内的 `super::front_of_house::hosting`(原文 `super::hosting`?)引用这个短路径。
注意这里还有一个警告说 `use` 在其作用域内不再被使用!为了修复这个问题,可以将 `use` 移动到 `customer` 模块内,或者在子模块 `customer` 内通过 `super::hosting` 引用父模块中的这个短路径。
### 创建惯用的 `use` 路径