about summary refs log tree commit diff
path: root/src/doc/rust.md
diff options
context:
space:
mode:
authorPiotr Jawniak <sawyer47@gmail.com>2014-06-22 09:31:39 +0200
committerPiotr Jawniak <sawyer47@gmail.com>2014-06-22 09:31:39 +0200
commit0b9e4fcaff609cc8e642d054e61fc54b168df22f (patch)
treec8116967baa54a7d35f9dce9d49de57346fb7863 /src/doc/rust.md
parent4c39962d325c09849e9cbb1828f85028f29fcea3 (diff)
downloadrust-0b9e4fcaff609cc8e642d054e61fc54b168df22f.tar.gz
rust-0b9e4fcaff609cc8e642d054e61fc54b168df22f.zip
Update few files after comparison traits renaming
There were still Total{Ord,Eq} in docs and src/etc
Diffstat (limited to 'src/doc/rust.md')
-rw-r--r--src/doc/rust.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust.md b/src/doc/rust.md
index 6049ffab2bf..e7b6941b622 100644
--- a/src/doc/rust.md
+++ b/src/doc/rust.md
@@ -2270,7 +2270,7 @@ impl<T: PartialEq> PartialEq for Foo<T> {
 
 Supported traits for `deriving` are:
 
-* Comparison traits: `PartialEq`, `TotalEq`, `PartialOrd`, `TotalOrd`.
+* Comparison traits: `PartialEq`, `Eq`, `PartialOrd`, `Ord`.
 * Serialization: `Encodable`, `Decodable`. These require `serialize`.
 * `Clone`, to create `T` from `&T` via a copy.
 * `Hash`, to iterate over the bytes in a data type.