From 578ed365108153f9a1396b273eacb15b7c22c6f5 Mon Sep 17 00:00:00 2001 From: wencan Date: Tue, 6 Jun 2023 16:08:53 +0800 Subject: [PATCH] =?UTF-8?q?fix=207.5=E7=BC=A9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch07-05-separating-modules-into-different-files.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ch07-05-separating-modules-into-different-files.md b/src/ch07-05-separating-modules-into-different-files.md index 11f1bda..5f1413b 100644 --- a/src/ch07-05-separating-modules-into-different-files.md +++ b/src/ch07-05-separating-modules-into-different-files.md @@ -59,6 +59,7 @@ > > * *src/front_of_house.rs*(我们所介绍的) > * *src/front_of_house/mod.rs*(老风格,不过仍然支持) +> > 对于 `front_of_house` 的子模块 `hosting`,编译器会在如下位置查找模块代码: > > * *src/front_of_house/hosting.rs*(我们所介绍的)