about summary refs log tree commit diff
path: root/src/doc/tutorial.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/tutorial.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/tutorial.md')
-rw-r--r--src/doc/tutorial.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md
index 6d9aa484167..e6d9cef7a31 100644
--- a/src/doc/tutorial.md
+++ b/src/doc/tutorial.md
@@ -2619,8 +2619,8 @@ fn main() {
 }
 ~~~
 
-The full list of derivable traits is `PartialEq`, `TotalEq`, `Ord`,
-`TotalOrd`, `Encodable`, `Decodable`, `Clone`,
+The full list of derivable traits is `PartialEq`, `Eq`, `PartialOrd`,
+`Ord`, `Encodable`, `Decodable`, `Clone`,
 `Hash`, `Rand`, `Default`, `Zero`, `FromPrimitive` and `Show`.
 
 # Crates and the module system