From ff98afebf47da86cce6e7c033634c36c40bf63b6 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Fri, 16 May 2014 10:07:44 +1000 Subject: [PATCH] Work around parse error caused by #14240. --- src/libcollections/hashmap.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libcollections/hashmap.rs b/src/libcollections/hashmap.rs index 87dc97d70c7..4b9c8ccadd2 100644 --- a/src/libcollections/hashmap.rs +++ b/src/libcollections/hashmap.rs @@ -1295,8 +1295,7 @@ impl, V, S, H: Hasher> HashMap { /// }, /// // if the key doesn't exist in the map yet, add it in /// // the obvious way. - /// |_k, v| vec![v], - /// ); + /// |_k, v| vec![v]); /// } /// /// assert_eq!(map.len(), 3);