about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-07-06 12:20:23 +0000
committerbors <bors@rust-lang.org>2015-07-06 12:20:23 +0000
commit9748574271847c1d6e65b71eca175cfcac9361f5 (patch)
treecc86a72f35b73f65daaa91c7e44bbb51d9394bea
parenta2b927c5a41ded169a0919ff8193b5357c850217 (diff)
parent144e44923f3668d322b3dbf7fc1c036f15f04c2c (diff)
downloadrust-9748574271847c1d6e65b71eca175cfcac9361f5.tar.gz
rust-9748574271847c1d6e65b71eca175cfcac9361f5.zip
Auto merge of #26821 - oli-obk:patch-1, r=sanxiyn
-rw-r--r--src/libstd/collections/hash/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/state.rs b/src/libstd/collections/hash/state.rs
index 365e6268b3b..546e15296c7 100644
--- a/src/libstd/collections/hash/state.rs
+++ b/src/libstd/collections/hash/state.rs
@@ -38,7 +38,7 @@ pub trait HashState {
 /// A structure which is a factory for instances of `Hasher` which implement the
 /// default trait.
 ///
-/// This struct has is 0-sized and does not need construction.
+/// This struct is 0-sized and does not need construction.
 pub struct DefaultState<H>(marker::PhantomData<H>);
 
 impl<H: Default + hash::Hasher> HashState for DefaultState<H> {