From 5661455139e1632585cb1acb9ceca6fd62fab995 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 30 Aug 2019 09:08:38 -0700 Subject: [PATCH] Undocument `use` paths. --- src/items/use-declarations.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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