diff options
| -rw-r--r-- | src/libcore/cmp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs index 8db59bd370e..3f739b86a1b 100644 --- a/src/libcore/cmp.rs +++ b/src/libcore/cmp.rs @@ -149,7 +149,7 @@ impl PartialOrd for Ordering { /// If the first ordering is different, the first ordering is all that must be returned. /// If the first ordering is equal, then second ordering is returned. #[inline] -#[deprecated = "Just call .cmp() on an Ordering"] +#[deprecated = "Just call .cmp() on a tuple"] pub fn lexical_ordering(o1: Ordering, o2: Ordering) -> Ordering { match o1 { Equal => o2, |
