From e30909de1149d72ce4729481581baa08264c9d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 16 May 2015 02:21:05 +0200 Subject: [PATCH] Small typo in the docs Just detected it while reading. --- src/libstd/collections/hash/map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 HashMap { /// 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 ///