about summary refs log tree commit diff
path: root/src/libcoretest
diff options
context:
space:
mode:
authorathulappadan <a4athulappadan@gmail.com>2016-09-11 22:58:01 +0530
committerathulappadan <a4athulappadan@gmail.com>2016-09-11 22:58:01 +0530
commit41881e85bd832127f2a6eee5821eaae353dea281 (patch)
tree730da8b3d9bd50eec2c578ae76e9eca931942bb5 /src/libcoretest
parent49e77dbf25ed6526fb5d37c32e55797fb04522f0 (diff)
downloadrust-41881e85bd832127f2a6eee5821eaae353dea281.tar.gz
rust-41881e85bd832127f2a6eee5821eaae353dea281.zip
Documentation for default types modified
Diffstat (limited to 'src/libcoretest')
-rw-r--r--src/libcoretest/hash/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libcoretest/hash/mod.rs b/src/libcoretest/hash/mod.rs
index dec8b57518f..4ea42644ecd 100644
--- a/src/libcoretest/hash/mod.rs
+++ b/src/libcoretest/hash/mod.rs
@@ -18,7 +18,6 @@ struct MyHasher {
 }
 
 impl Default for MyHasher {
-    /// Constructs a `MyHasher` with initial value zero.
     fn default() -> MyHasher {
         MyHasher { hash: 0 }
     }
@@ -91,7 +90,6 @@ impl Hasher for CustomHasher {
 }
 
 impl Default for CustomHasher {
-    /// Constructs a `CustomHasher` with initial value zero.
     fn default() -> CustomHasher {
         CustomHasher { output: 0 }
     }