You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate documentation for a crate containing just:
pubuse::std;
then the documentation shows pub use {{root}}::std;, which seems like some implementation detail leaking into the output. Without the leading ::, it shows pub use std; which is more reasonable and what I expected to get.
(Of course, using std here is just for a self-contained example. It originally happened with a normal Cargo dependency crate.)
Generate documentation for a crate containing just:
then the documentation shows
pub use {{root}}::std;
, which seems like some implementation detail leaking into the output. Without the leading::
, it showspub use std;
which is more reasonable and what I expected to get.(Of course, using
std
here is just for a self-contained example. It originally happened with a normal Cargo dependency crate.)Meta
Reproduced on:
@rustbot label +T-rustdoc
The text was updated successfully, but these errors were encountered: