about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2014-07-28 23:22:47 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2014-07-28 23:22:47 +0200
commit886c501ca3e1e50a46951fc8f0cfa5325eaacbf4 (patch)
tree798821ff5685eaf9aed05e986f831d55c7f20505 /src/libstd
parent8d2e7161ee7f1aa28f8f45a60d71d5559eb0d527 (diff)
downloadrust-886c501ca3e1e50a46951fc8f0cfa5325eaacbf4.tar.gz
rust-886c501ca3e1e50a46951fc8f0cfa5325eaacbf4.zip
doc: reduce overlong sentence
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hashmap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hashmap.rs b/src/libstd/collections/hashmap.rs
index 8b6e6d61842..a569ee4a32a 100644
--- a/src/libstd/collections/hashmap.rs
+++ b/src/libstd/collections/hashmap.rs
@@ -675,7 +675,7 @@ impl DefaultResizePolicy {
 /// Hood bucket stealing.
 ///
 /// The hashes are all keyed by the task-local random number generator
-/// on creation by default, this means the ordering of the keys is
+/// on creation by default. This means that the ordering of the keys is
 /// randomized, but makes the tables more resistant to
 /// denial-of-service attacks (Hash DoS). This behaviour can be
 /// overridden with one of the constructors.