about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2012-01-27 20:39:16 -0800
committerErick Tryzelaar <erick.tryzelaar@gmail.com>2012-01-28 09:18:35 -0800
commit5b2c0a999fd9d0a92c82f2615a00cd13ced7a077 (patch)
treeeb28fdd45c49c9c39d2c1a651891ed3e3cb8d887 /src/libstd
parentf98210db074595c726f8a2913149cb536a893de3 (diff)
downloadrust-5b2c0a999fd9d0a92c82f2615a00cd13ced7a077.tar.gz
rust-5b2c0a999fd9d0a92c82f2615a00cd13ced7a077.zip
std: Whitespace cleanup.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/map.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/map.rs b/src/libstd/map.rs
index ed37318246b..09eb1534f93 100644
--- a/src/libstd/map.rs
+++ b/src/libstd/map.rs
@@ -95,6 +95,7 @@ iface map<K: copy, V: copy> {
     Iterate over all the keys in the map
     */
     fn keys(fn(K));
+
     /*
     Iterate over all the values in the map
     */
@@ -631,4 +632,4 @@ mod tests {
         map.insert(key, "val");
         assert (option::get(map.find(key)) == "val");
     }
-}
\ No newline at end of file
+}