about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-07-29 15:57:01 +0000
committerbors <bors@rust-lang.org>2014-07-29 15:57:01 +0000
commitb92536ff2f611027b7bc0953c9850b42ed3ddf41 (patch)
tree2ab56dc3f9949b917466ba0dc983440f160de795 /src/libstd
parent1c0493919feb9e944efbd89fcaa327dd04f825fc (diff)
parent886c501ca3e1e50a46951fc8f0cfa5325eaacbf4 (diff)
downloadrust-b92536ff2f611027b7bc0953c9850b42ed3ddf41.tar.gz
rust-b92536ff2f611027b7bc0953c9850b42ed3ddf41.zip
auto merge of #16054 : tshepang/rust/patch-1, r=brson
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.