Skip to content

Commit

Permalink
Work around parse error caused by #14240.
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-morgan committed May 16, 2014
1 parent 5b13ddb commit ff98afe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libcollections/hashmap.rs
Expand Up @@ -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);
Expand Down

5 comments on commit ff98afe

@bors
Copy link
Contributor

@bors bors commented on ff98afe May 16, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from cmr
at chris-morgan@ff98afe

@bors
Copy link
Contributor

@bors bors commented on ff98afe May 16, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging chris-morgan/rust/hashmap-mangle = ff98afe into auto

@bors
Copy link
Contributor

@bors bors commented on ff98afe May 16, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

chris-morgan/rust/hashmap-mangle = ff98afe merged ok, testing candidate = 632d486

@bors
Copy link
Contributor

@bors bors commented on ff98afe May 16, 2014

@bors
Copy link
Contributor

@bors bors commented on ff98afe May 16, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 632d486

Please sign in to comment.