about summary refs log tree commit diff
path: root/src/libstd/map.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-02 18:13:48 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-02 18:13:56 -0700
commitf393100b7ce86e0c1201f003c2d69fb9ea742db1 (patch)
tree577bd91894ec1e1607ae805c03a36b0819617490 /src/libstd/map.rs
parentcb0eb66672c20404cc87850db98fe00ff94da403 (diff)
downloadrust-f393100b7ce86e0c1201f003c2d69fb9ea742db1.tar.gz
rust-f393100b7ce86e0c1201f003c2d69fb9ea742db1.zip
Camel case core::ops
Diffstat (limited to 'src/libstd/map.rs')
-rw-r--r--src/libstd/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/map.rs b/src/libstd/map.rs
index 9e2770a1f02..20c48d6dda7 100644
--- a/src/libstd/map.rs
+++ b/src/libstd/map.rs
@@ -367,7 +367,7 @@ mod chained {
         }
     }
 
-    impl<K: copy, V: copy> t<K, V>: ops::index<K, V> {
+    impl<K: copy, V: copy> t<K, V>: ops::Index<K, V> {
         pure fn index(&&k: K) -> V {
             unchecked {
                 self.get(k)