about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Schneider <github6541940@oli-obk.de>2015-07-06 13:58:37 +0200
committerOliver Schneider <github6541940@oli-obk.de>2015-07-06 13:58:37 +0200
commit144e44923f3668d322b3dbf7fc1c036f15f04c2c (patch)
treecc86a72f35b73f65daaa91c7e44bbb51d9394bea
parenta2b927c5a41ded169a0919ff8193b5357c850217 (diff)
downloadrust-144e44923f3668d322b3dbf7fc1c036f15f04c2c.tar.gz
rust-144e44923f3668d322b3dbf7fc1c036f15f04c2c.zip
typo "struct has is 0-sized"
-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> {