]> git.lizzy.rs Git - rust.git/blobdiff - src/libcollections/btree/map.rs
sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs
[rust.git] / src / libcollections / btree / map.rs
index 24ba63a500105fa22023850050e42a0ffcd23b0a..159f5723193944eb2dd086e4c312b42c90986860 100644 (file)
@@ -81,7 +81,7 @@
 /// force this degenerate behaviour to occur on every operation. While the total amount of work
 /// done on each operation isn't *catastrophic*, and *is* still bounded by O(B log<sub>B</sub>n),
 /// it is certainly much slower when it does.
-#[deriving(Clone)]
+#[derive(Clone)]
 #[stable]
 pub struct BTreeMap<K, V> {
     root: Node<K, V>,