Sort unstable items last in rustdoc, instead of first

This commit is contained in:
David Tolnay 2023-11-23 16:38:31 -08:00
parent a994f46421
commit b77aa74a2d
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 5 additions and 5 deletions

View file

@ -369,8 +369,8 @@ fn cmp(
if let (Some(a), Some(b)) = (s1, s2) {
match (a.is_stable(), b.is_stable()) {
(true, true) | (false, false) => {}
(false, true) => return Ordering::Less,
(true, false) => return Ordering::Greater,
(false, true) => return Ordering::Greater,
(true, false) => return Ordering::Less,
}
}
let lhs = i1.name.unwrap_or(kw::Empty);

View file

@ -3,9 +3,9 @@
#![unstable(feature = "test", issue = "none")]
// @has stability/index.html
// @has - '//ul[@class="item-table"]/li[1]//a' Unstable
// @has - '//ul[@class="item-table"]/li[2]//a' AaStable
// @has - '//ul[@class="item-table"]/li[3]//a' ZzStable
// @has - '//ul[@class="item-table"]/li[1]//a' AaStable
// @has - '//ul[@class="item-table"]/li[2]//a' ZzStable
// @has - '//ul[@class="item-table"]/li[3]//a' Unstable
#[stable(feature = "rust2", since = "2.2.2")]
pub struct AaStable;