Skip to content

Commit ff98afe

Browse files
committed
Work around parse error caused by #14240.
1 parent 5b13ddb commit ff98afe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libcollections/hashmap.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1295,8 +1295,7 @@ impl<K: TotalEq + Hash<S>, V, S, H: Hasher<S>> HashMap<K, V, H> {
12951295
/// },
12961296
/// // if the key doesn't exist in the map yet, add it in
12971297
/// // the obvious way.
1298-
/// |_k, v| vec![v],
1299-
/// );
1298+
/// |_k, v| vec![v]);
13001299
/// }
13011300
///
13021301
/// assert_eq!(map.len(), 3);

0 commit comments

Comments
 (0)