about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-17 11:55:38 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-17 11:55:38 +0530
commite06eb1c73338507ea14839a850377579b376b4c9 (patch)
treecbc3651a08a7e999e9ef39625763f3453b4729d9 /src/libstd
parente8d29a9cfba395df58cf4695d4d68d0e42e1b1f3 (diff)
parente30909de1149d72ce4729481581baa08264c9d8b (diff)
downloadrust-e06eb1c73338507ea14839a850377579b376b4c9.tar.gz
rust-e06eb1c73338507ea14839a850377579b376b4c9.zip
Rollup merge of #25469 - ecoal95:patch-1, r=alexcrichton
Just detected it while reading.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index 48f65a5abfd..a5fbc4374e0 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -539,7 +539,7 @@ impl<K, V, S> HashMap<K, V, S>
 {
     /// Creates an empty hashmap which will use the given hasher to hash keys.
     ///
-    /// The creates map has the default initial capacity.
+    /// The created map has the default initial capacity.
     ///
     /// # Examples
     ///