Work around parse error caused by #14240.

This commit is contained in:
Chris Morgan 2014-05-16 10:07:44 +10:00
parent 5b13ddb5f2
commit ff98afebf4

View File

@ -1295,8 +1295,7 @@ impl<K: TotalEq + Hash<S>, V, S, H: Hasher<S>> HashMap<K, V, H> {
/// },
/// // 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);