diff options
| author | Andrew Paseltiner <apaseltiner@gmail.com> | 2013-03-20 11:52:45 -0400 |
|---|---|---|
| committer | Andrew Paseltiner <apaseltiner@gmail.com> | 2013-03-22 06:30:59 -0400 |
| commit | e2abecd3ab406ce447a8b23c8a7563e9c455f870 (patch) | |
| tree | e1a2cd1af8878d1f4f37fb21e4c544d1131cd000 /src/libsyntax/opt_vec.rs | |
| parent | 6e883c730e0d6b07a8a94df30c681a292a031b18 (diff) | |
| download | rust-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.rs | 2 |
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, |
