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 2756ea6..dc346e6 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 @@ -8,7 +8,7 @@ 路径有两种形式: -- **绝对路径**(_absolute path_)是以 crate 根(root)开头的全路径;对于外部 crate 的代码,是以 crate 名开头的绝对路径,对于对于当前 crate 的代码,则以字面值 `crate` 开头。 +- **绝对路径**(_absolute path_)是以 crate 根(root)开头的全路径;对于外部 crate 的代码,是以 crate 名开头的绝对路径,对于当前 crate 的代码,则以字面值 `crate` 开头。 - **相对路径**(_relative path_)从当前模块开始,以 `self`、`super` 或当前模块的标识符开头。 绝对路径和相对路径都后跟一个或多个由双冒号(`::`)分割的标识符。