about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <ecoal95@gmail.com>2015-05-16 02:21:05 +0200
committerEmilio Cobos Álvarez <ecoal95@gmail.com>2015-05-16 02:21:05 +0200
commite30909de1149d72ce4729481581baa08264c9d8b (patch)
treea33d1a299cdb7deaf22d5f5b8da025509a21444b /src/libstd
parenta9ea33fa30fc2c1a8084e035455ba2a0a0dfea3e (diff)
downloadrust-e30909de1149d72ce4729481581baa08264c9d8b.tar.gz
rust-e30909de1149d72ce4729481581baa08264c9d8b.zip
Small typo in the docs
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
     ///