std: Whitespace cleanup.

This commit is contained in:
Erick Tryzelaar 2012-01-27 20:39:16 -08:00
parent f98210db07
commit 5b2c0a999f

View file

@ -95,6 +95,7 @@ iface map<K: copy, V: copy> {
Iterate over all the keys in the map Iterate over all the keys in the map
*/ */
fn keys(fn(K)); fn keys(fn(K));
/* /*
Iterate over all the values in the map Iterate over all the values in the map
*/ */
@ -631,4 +632,4 @@ mod tests {
map.insert(key, "val"); map.insert(key, "val");
assert (option::get(map.find(key)) == "val"); assert (option::get(map.find(key)) == "val");
} }
} }