about summary refs log tree commit diff
path: root/src/libstd/hash
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/hash')
-rw-r--r--src/libstd/hash/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/hash/mod.rs b/src/libstd/hash/mod.rs
index ac079cb3fb3..027a1d9010e 100644
--- a/src/libstd/hash/mod.rs
+++ b/src/libstd/hash/mod.rs
@@ -24,7 +24,7 @@
  * struct Person {
  *     id: uint,
  *     name: ~str,
- *     phone: uint,
+ *     phone: u64,
  * }
  *
  * let person1 = Person { id: 5, name: ~"Janet", phone: 555_666_7777 };
@@ -44,7 +44,7 @@
  * struct Person {
  *     id: uint,
  *     name: ~str,
- *     phone: uint,
+ *     phone: u64,
  * }
  *
  * impl Hash for Person {