about summary refs log tree commit diff
path: root/src/libcore/dvec.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/libcore/dvec.rs
parentcb0eb66672c20404cc87850db98fe00ff94da403 (diff)
Camel case core::ops
Diffstat (limited to 'src/libcore/dvec.rs')
-rw-r--r--src/libcore/dvec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/dvec.rs b/src/libcore/dvec.rs
index 0fffec961df..af2a45d4267 100644
--- a/src/libcore/dvec.rs
+++ b/src/libcore/dvec.rs
@@ -327,7 +327,7 @@ impl<A: copy> DVec<A> {
     }
 }
 
-impl<A:copy> DVec<A>: index<uint,A> {
+impl<A:copy> DVec<A>: Index<uint,A> {
     pure fn index(&&idx: uint) -> A {
         self.get_elt(idx)
     }