diff options
| author | Oliver Schneider <github6541940@oli-obk.de> | 2015-07-06 13:58:37 +0200 |
|---|---|---|
| committer | Oliver Schneider <github6541940@oli-obk.de> | 2015-07-06 13:58:37 +0200 |
| commit | 144e44923f3668d322b3dbf7fc1c036f15f04c2c (patch) | |
| tree | cc86a72f35b73f65daaa91c7e44bbb51d9394bea | |
| parent | a2b927c5a41ded169a0919ff8193b5357c850217 (diff) | |
| download | rust-144e44923f3668d322b3dbf7fc1c036f15f04c2c.tar.gz rust-144e44923f3668d322b3dbf7fc1c036f15f04c2c.zip | |
typo "struct has is 0-sized"
| -rw-r--r-- | src/libstd/collections/hash/state.rs | 2 |
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> { |
