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
Sections appearing on the sidebar seem to not have a deterministic order and can result in variations like the attached screenshot. The order probably should be deterministic and go either Structs → Modules → Crates or Crates→ Mdoules → Struct.
Reloading the page many times seems to successfully reproduce the issue here.
The text was updated successfully, but these errors were encountered:
sfackler
added
the
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
label
Nov 9, 2015
A race condition in Javascript was causing unpredictable ordering
of the sidebar boxes when loading documentation generated by
rustdoc, due to the script that adds the Crates box being executed
asynchronously. Disabling the asynchronous execution and deferring
this script should ensure that the Crates box always appears last
in the sidebox (this seemed to be the more common ordering prior
to this change).
Fixesrust-lang#29698
A race condition in Javascript was causing unpredictable ordering
of the sidebar boxes when loading documentation generated by
rustdoc, due to the script that adds the Crates box being executed
asynchronously. Disabling the asynchronous execution and deferring
this script should ensure that the Crates box always appears last
in the sidebox (this seemed to be the more common ordering prior
to this change).
Fixes#29698
Sections appearing on the sidebar seem to not have a deterministic order and can result in variations like the attached screenshot. The order probably should be deterministic and go either
Structs → Modules → Crates
orCrates→ Mdoules → Struct
.Reloading the page many times seems to successfully reproduce the issue here.
The text was updated successfully, but these errors were encountered: