-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ordering of auto-generated trait bounds in rustdoc output #49196
Fix ordering of auto-generated trait bounds in rustdoc output #49196
Conversation
While the order of the where clauses was deterministic, the ordering of bounds and lifetimes was not. This made the order flip- flop randomly when new traits and impls were added to libstd. This PR makes the ordering of bounds and lifetimes deterministic, and re-enables the test that was causing the issue. Fixes rust-lang#49123
Great! Thanks for getting this set up! @bors r+ p=1 (fixes a flaky test) |
📌 Commit 7daf3f9 has been approved by |
…etMisdreavus Fix ordering of auto-generated trait bounds in rustdoc output While the order of the where clauses was deterministic, the ordering of bounds and lifetimes was not. This made the order flip- flop randomly when new traits and impls were added to libstd. This PR makes the ordering of bounds and lifetimes deterministic, and re-enables the test that was causing the issue. Fixes #49123
💔 Test failed - status-travis |
@bors retry
|
⌛ Testing commit 7daf3f9 with merge 72da16c27ea66d734b4fd058ef03acfa41b1cadb... |
💔 Test failed - status-travis |
Currently waiting on #49217 or some other resolution to travis-ci/dpl#788... |
@bors retry travis-ci/dpl#788 |
⌛ Testing commit 7daf3f9 with merge 33a0ca2a3c6574e258f184b237ee301e4c9948f2... |
…ions, r=QuietMisdreavus Fix ordering of auto-generated trait bounds in rustdoc output While the order of the where clauses was deterministic, the ordering of bounds and lifetimes was not. This made the order flip- flop randomly when new traits and impls were added to libstd. This PR makes the ordering of bounds and lifetimes deterministic, and re-enables the test that was causing the issue. Fixes rust-lang#49123
While the order of the where clauses was deterministic, the
ordering of bounds and lifetimes was not. This made the order flip-
flop randomly when new traits and impls were added to libstd.
This PR makes the ordering of bounds and lifetimes deterministic,
and re-enables the test that was causing the issue.
Fixes #49123