From be6f8695d69c306e39982598a33c2797a2759609 Mon Sep 17 00:00:00 2001 From: phenix3443 Date: Fri, 15 Sep 2023 11:55:05 +0800 Subject: [PATCH] fix: repaire one ch07-03 typo --- ...ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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` 或当前模块的标识符开头。 绝对路径和相对路径都后跟一个或多个由双冒号(`::`)分割的标识符。