From 497cbb6748ea9c995da26a5cc8ae947bd0224c63 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Mon, 23 May 2016 13:02:16 -0400 Subject: [PATCH] "non equal" => "not equal"; consistent with the surrounding text --- 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 5b8620f4b8eb..f26a6dad8800 100644 --- a/src/libcore/cmp.rs +++ b/src/libcore/cmp.rs @@ -56,7 +56,7 @@ use option::Option::{self, Some}; /// ## Derivable /// /// This trait can be used with `#[derive]`. When `derive`d on structs, two -/// instances are equal if all fields are equal, and non equal if any fields +/// instances are equal if all fields are equal, and not equal if any fields /// are not equal. When `derive`d on enums, each variant is equal to itself /// and not equal to the other variants. ///