From 5b2c0a999fd9d0a92c82f2615a00cd13ced7a077 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Fri, 27 Jan 2012 20:39:16 -0800 Subject: [PATCH] std: Whitespace cleanup. --- src/libstd/map.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstd/map.rs b/src/libstd/map.rs index ed37318246b1..09eb1534f937 100644 --- a/src/libstd/map.rs +++ b/src/libstd/map.rs @@ -95,6 +95,7 @@ iface map { 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 +}