Merge pull request #770 from DistinctWind/main

修正了翻译不得当的地方
This commit is contained in:
KaiserY 2024-02-19 20:15:15 +08:00 committed by GitHub
commit 3334e96f97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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