Skip to content

Commit a665891

Browse files
committed
Patch over UI bug in rustdoc
Ensures that the used names are unique even if the crate is itself available under its name during compilation. See rust-lang/rust#68488
1 parent 13e8950 commit a665891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fill/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ extern crate alloc;
4646

4747
mod fill;
4848

49-
pub use fill::Fill;
49+
pub use crate::fill::Fill;
5050

5151
// Can't use the macro-call itself within the `doc` attribute. So force it to eval it as part of
5252
// the macro invocation.

0 commit comments

Comments
 (0)