We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ae250b commit 3f324a8Copy full SHA for 3f324a8
src/tools/clippy/clippy_lints/src/wildcard_imports.rs
@@ -160,7 +160,7 @@ impl LateLintPass<'_> for WildcardImports {
160
)
161
};
162
163
- let mut imports = used_imports.items().map(ToString::to_string).into_sorted_stable_ord(false);
+ let mut imports = used_imports.items().map(ToString::to_string).into_sorted_stable_ord();
164
let imports_string = if imports.len() == 1 {
165
imports.pop().unwrap()
166
} else if braced_glob {
0 commit comments