We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a0ac86 commit 15fc5d5Copy full SHA for 15fc5d5
src/items/extern-crates.md
@@ -43,7 +43,7 @@ extern crate hello_world; // hyphen replaced with an underscore
43
External crates imported with `extern crate` in the root module or provided to
44
the compiler (as with the `--extern` flag with `rustc`) are added to the
45
"extern prelude". Crates in the extern prelude are in scope in the entire
46
-crate, including inner modules. If renamed as in `extern crate orig_name as
+crate, including inner modules. If imported with `extern crate orig_name as
47
new_name`, then the symbol `new_name` is added to the prelude.
48
49
The `core` crate is always added to the extern prelude. The `std` crate
0 commit comments