rustdoc: Just "stability" instead of "stability dashboard"

The words "stability dashboard" take up too much space on small screens.
This commit is contained in:
Brian Anderson 2014-08-04 14:31:53 -07:00
parent 57e53d5c2f
commit bcdc8fb812

View File

@ -1333,7 +1333,7 @@ impl<'a> fmt::Show for Item<'a> {
// Write stability dashboard link
match self.item.inner {
clean::ModuleItem(ref m) if m.is_crate => {
try!(write!(fmt, "<a href='stability.html'>[stability dashboard]</a> "));
try!(write!(fmt, "<a href='stability.html'>[stability]</a> "));
}
_ => {}
};