diff options
| author | bors <bors@rust-lang.org> | 2016-01-28 11:00:55 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-01-28 11:00:55 +0000 |
| commit | 10de8826cd583d61171c118426fe8e9c73a59f2d (patch) | |
| tree | 22ded7404863a2c476d05249dbd9cd3b8f913fad | |
| parent | a891c72976824993ecb4a8749d9f16dbeceaeeed (diff) | |
| parent | 699c581b8402c9e040a153be23c1a9cbbfc92a4f (diff) | |
| download | rust-10de8826cd583d61171c118426fe8e9c73a59f2d.tar.gz rust-10de8826cd583d61171c118426fe8e9c73a59f2d.zip | |
Auto merge of #31241 - tshepang:fix, r=steveklabnik
| -rw-r--r-- | src/libcore/hash/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/hash/mod.rs b/src/libcore/hash/mod.rs index 9ab55620e0a..b8709e8649a 100644 --- a/src/libcore/hash/mod.rs +++ b/src/libcore/hash/mod.rs @@ -194,8 +194,8 @@ pub trait Hasher { /// A `BuildHasher` is typically used as a factory for instances of `Hasher` /// which a `HashMap` can then use to hash keys independently. /// -/// Note that for each instance of `BuildHasher` the create hashers should be -/// identical. That is if the same stream of bytes is fed into each hasher the +/// Note that for each instance of `BuildHasher`, the created hashers should be +/// identical. That is, if the same stream of bytes is fed into each hasher, the /// same output will also be generated. #[stable(since = "1.7.0", feature = "build_hasher")] pub trait BuildHasher { |
