diff --git a/src/items/use-declarations.md b/src/items/use-declarations.md index aeddb8321..d93c5ba05 100644 --- a/src/items/use-declarations.md +++ b/src/items/use-declarations.md @@ -82,13 +82,9 @@ In this example, the module `quux` re-exports two public names defined in ## `use` Paths -Paths in `use` items must start with a crate name or one of the [path -qualifiers] `crate`, `self`, `super`, or `::`. `crate` refers to the current -crate. `self` refers to the current module. `super` refers to the parent -module. `::` can be used to explicitly refer to a crate, requiring an extern -crate name to follow. +> **Note**: This section is incomplete. -An example of what will and will not work for `use` items: +Some examples of what will and will not work for `use` items: ```rust