Skip to content

Commit 652b1bd

Browse files
committed
fix tidy
1 parent de9413b commit 652b1bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_resolve/resolve_imports.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ impl<'a, 'b> ImportResolver<'a, 'b> {
973973
max_vis.get() != ty::Visibility::Invisible && // Allow empty globs.
974974
!max_vis.get().is_at_least(directive.vis.get(), &*self) {
975975
let msg =
976-
"glob import doesn't reexport anything because no candidate is public enough";
976+
"glob import doesn't reexport anything because no candidate is public enough";
977977
self.r.session.buffer_lint(UNUSED_IMPORTS, directive.id, directive.span, msg);
978978
}
979979
return None;

0 commit comments

Comments
 (0)