]> git.lizzy.rs Git - rust.git/commitdiff
Auto merge of #31257 - tmiasko:track-errors-fix, r=nikomatsakis
authorbors <bors@rust-lang.org>
Thu, 28 Jan 2016 17:20:04 +0000 (17:20 +0000)
committerbors <bors@rust-lang.org>
Thu, 28 Jan 2016 17:20:04 +0000 (17:20 +0000)
r? @nrc

src/libcore/hash/mod.rs

index 9ab55620e0aece5ebad170eb205792215975639e..b8709e8649a69051ec893a444a03f33db75ccf5c 100644 (file)
@@ -194,8 +194,8 @@ fn write_isize(&mut self, i: isize) {
 /// 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 {