@@ -1220,7 +1220,7 @@ mod unsafe_keyword {}
1220
1220
/// though a number of convenient shortcuts are supported:
1221
1221
///
1222
1222
/// * Simultaneously binding a list of paths with a common prefix,
1223
- /// using the glob-like brace syntax use ` a::b::{c, d, e::f, g::h::i};`
1223
+ /// using the glob-like brace syntax ` use a::b::{c, d, e::f, g::h::i};`
1224
1224
/// * Simultaneously binding a list of paths with a common prefix and their common parent module,
1225
1225
/// using the [`self`] keyword, such as `use a::b::{self, c, d::e};`
1226
1226
/// * Rebinding the target name as a new local name, using the syntax `use p::q::r as x;`.
@@ -1230,7 +1230,7 @@ mod unsafe_keyword {}
1230
1230
/// * Nesting groups of the previous features multiple times,
1231
1231
/// such as `use a::b::{self as ab, c, d::{*, e::f}};`
1232
1232
/// * Reexporting with visibility modifiers such as `pub use a::b;`
1233
- /// * Importing with `_` to only import the methods of the item without binding it to a name
1233
+ /// * Importing with `_` to only import the methods of a trait without binding it to a name
1234
1234
/// (to avoid conflict for example): `use ::std::io::Read as _;`.
1235
1235
///
1236
1236
/// Using path qualifiers like [`crate`], [`super`] or [`self`] is supported: `use crate::a::b;`.
0 commit comments