std: fix the hash doctest

This commit is contained in:
Erick Tryzelaar 2014-02-22 14:12:47 -08:00
parent d223dd1e57
commit ca6d512ec1

View file

@ -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 {