From 56edae2f424ab0e8325c826a1d0b83783b47adaa Mon Sep 17 00:00:00 2001 From: Fabian Zaiser Date: Wed, 31 Aug 2016 13:50:58 +0200 Subject: [PATCH] Fix typo in PartialOrd docs --- src/libcore/cmp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs index 907dd1508d8be..670978a2d49af 100644 --- a/src/libcore/cmp.rs +++ b/src/libcore/cmp.rs @@ -383,7 +383,7 @@ impl PartialOrd for Ordering { /// } /// ``` /// -/// You may also find it useful to use `partial_cmp()` on your type`s fields. Here +/// You may also find it useful to use `partial_cmp()` on your type's fields. Here /// is an example of `Person` types who have a floating-point `height` field that /// is the only field to be used for sorting: ///