about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorvarkor <github@varkor.com>2018-07-23 01:16:28 +0100
committervarkor <github@varkor.com>2018-08-05 15:54:49 +0100
commita00ba4d71ea465c7e8074e1abb50970f0c767b28 (patch)
treeedbea6e0c4d44104aa4d5f07b72b0e3ebbc0c0f6 /src/liballoc
parent64185f205dcbd8db255ad6674e43c63423f2369a (diff)
downloadrust-a00ba4d71ea465c7e8074e1abb50970f0c767b28.tar.gz
rust-a00ba4d71ea465c7e8074e1abb50970f0c767b28.zip
Correct invalid feature attributes
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/collections/vec_deque.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/collections/vec_deque.rs b/src/liballoc/collections/vec_deque.rs
index ba92b886138..7787102ba82 100644
--- a/src/liballoc/collections/vec_deque.rs
+++ b/src/liballoc/collections/vec_deque.rs
@@ -2370,7 +2370,7 @@ macro_rules! __impl_slice_eq1 {
         __impl_slice_eq1! { $Lhs, $Rhs, Sized }
     };
     ($Lhs: ty, $Rhs: ty, $Bound: ident) => {
-        #[stable(feature = "vec-deque-partial-eq-slice", since = "1.17.0")]
+        #[stable(feature = "vec_deque_partial_eq_slice", since = "1.17.0")]
         impl<'a, 'b, A: $Bound, B> PartialEq<$Rhs> for $Lhs where A: PartialEq<B> {
             fn eq(&self, other: &$Rhs) -> bool {
                 if self.len() != other.len() {