about summary refs log tree commit diff
path: root/src/libsyntax/opt_vec.rs
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2013-03-20 11:52:45 -0400
committerAndrew Paseltiner <apaseltiner@gmail.com>2013-03-22 06:30:59 -0400
commite2abecd3ab406ce447a8b23c8a7563e9c455f870 (patch)
treee1a2cd1af8878d1f4f37fb21e4c544d1131cd000 /src/libsyntax/opt_vec.rs
parent6e883c730e0d6b07a8a94df30c681a292a031b18 (diff)
downloadrust-e2abecd3ab406ce447a8b23c8a7563e9c455f870.tar.gz
rust-e2abecd3ab406ce447a8b23c8a7563e9c455f870.zip
syntax: replace uses of old deriving attribute with new one
Diffstat (limited to 'src/libsyntax/opt_vec.rs')
-rw-r--r--src/libsyntax/opt_vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/opt_vec.rs b/src/libsyntax/opt_vec.rs
index dbabca55a11..435bfbdad24 100644
--- a/src/libsyntax/opt_vec.rs
+++ b/src/libsyntax/opt_vec.rs
@@ -106,7 +106,7 @@ impl<T:Copy> OptVec<T> {
 
 impl<A:Eq> Eq for OptVec<A> {
     pure fn eq(&self, other: &OptVec<A>) -> bool {
-        // Note: cannot use #[deriving_eq] here because
+        // Note: cannot use #[deriving(Eq)] here because
         // (Empty, Vec(~[])) ought to be equal.
         match (self, other) {
             (&Empty, &Empty) => true,