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*(我们所介绍的)