about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-23 13:02:16 -0400
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-23 13:02:16 -0400
commit497cbb6748ea9c995da26a5cc8ae947bd0224c63 (patch)
treee300434b67e18b3e0c60e2e0bf1357a271914d53 /src/libcore
parentc22c52449ad29021debd61cad6cadbc5a325433e (diff)
downloadrust-497cbb6748ea9c995da26a5cc8ae947bd0224c63.tar.gz
rust-497cbb6748ea9c995da26a5cc8ae947bd0224c63.zip
"non equal" => "not equal"; consistent with the surrounding text
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/cmp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/cmp.rs b/src/libcore/cmp.rs
index 5b8620f4b8e..f26a6dad880 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.
 ///