Remove strange formatting in Ordering docs.
This commit is contained in:
parent
3750348daf
commit
3e01901fcd
1 changed files with 3 additions and 3 deletions
|
|
@ -286,13 +286,13 @@ pub struct AssertParamIsEq<T: Eq + ?Sized> { _field: ::marker::PhantomData<T> }
|
|||
#[derive(Clone, Copy, PartialEq, Debug, Hash)]
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
pub enum Ordering {
|
||||
/// An ordering where a compared value is less [than another].
|
||||
/// An ordering where a compared value is less than another.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
Less = -1,
|
||||
/// An ordering where a compared value is equal [to another].
|
||||
/// An ordering where a compared value is equal to another.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
Equal = 0,
|
||||
/// An ordering where a compared value is greater [than another].
|
||||
/// An ordering where a compared value is greater than another.
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
Greater = 1,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue