From 1107ff927bfcc3d67ba2741206546948cc4f07c9 Mon Sep 17 00:00:00 2001 From: KaiserY Date: Thu, 19 Jan 2023 00:28:09 +0800 Subject: [PATCH] fix autocorrent --- ...ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md | 2 +- src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md b/src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md index db0d12d..b667325 100644 --- a/src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md +++ b/src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md @@ -85,7 +85,7 @@ Rust 选择以这种方式来实现模块系统功能,因此默认隐藏内部 现在代码可以编译通过了!为了了解为何增加 `pub` 关键字使得我们可以在 `add_to_waitlist` 中调用这些路径与私有性规则有关,让我们看看绝对路径和相对路径。 -在绝对路径,我们从 `crate`,也就是 crate 根开始。 crate 根中定义了 `front_of_house` 模块。虽然 `front_of_house` 模块不是公有的,不过因为 `eat_at_restaurant` 函数与 `front_of_house` 定义于同一模块中(即,`eat_at_restaurant` 和 `front_of_house` 是兄弟),我们可以从 `eat_at_restaurant` 中引用 `front_of_house`。接下来是使用 `pub` 标记的 `hosting` 模块。我们可以访问 `hosting` 的父模块,所以可以访问 `hosting`。最后,`add_to_waitlist` 函数被标记为 `pub` ,我们可以访问其父模块,所以这个函数调用是有效的! +在绝对路径,我们从 `crate` 也就是 crate 根开始。crate 根中定义了 `front_of_house` 模块。虽然 `front_of_house` 模块不是公有的,不过因为 `eat_at_restaurant` 函数与 `front_of_house` 定义于同一模块中(即,`eat_at_restaurant` 和 `front_of_house` 是兄弟),我们可以从 `eat_at_restaurant` 中引用 `front_of_house`。接下来是使用 `pub` 标记的 `hosting` 模块。我们可以访问 `hosting` 的父模块,所以可以访问 `hosting`。最后,`add_to_waitlist` 函数被标记为 `pub` ,我们可以访问其父模块,所以这个函数调用是有效的! 在相对路径,其逻辑与绝对路径相同,除了第一步:不同于从 crate 根开始,路径从 `front_of_house` 开始。`front_of_house` 模块与 `eat_at_restaurant` 定义于同一模块,所以从 `eat_at_restaurant` 中开始定义的该模块相对路径是有效的。接下来因为 `hosting` 和 `add_to_waitlist` 被标记为 `pub`,路径其余的部分也是有效的,因此函数调用也是有效的! diff --git a/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md b/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md index f9202c7..6e48544 100644 --- a/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md +++ b/src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md @@ -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::front_of_house::hosting`(原文 `super::hosting`?)引用这个短路径。 ### 创建惯用的 `use` 路径