Skip to content

Commit 01118be

Browse files
ericktgraydon
authored andcommitted
whitespace cleanup
1 parent 48e877a commit 01118be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/map.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ fn vec_from_set<T: copy>(s: set<T>) -> [T] {
328328

329329
#[doc = "Construct a hashmap from a vector"]
330330
fn hash_from_vec<K: const copy, V: copy>(hasher: hashfn<K>, eqer: eqfn<K>,
331-
items: [(K, V)]) -> hashmap<K, V> {
331+
items: [(K, V)]) -> hashmap<K, V> {
332332
let map = hashmap(hasher, eqer);
333333
vec::iter(items) { |item|
334334
let (key, value) = item;

0 commit comments

Comments
 (0)