Remove 'since' from unstable attributes

This commit is contained in:
Brian Anderson
2015-01-21 16:15:40 -08:00
parent 0768892abe
commit 41278c5441
131 changed files with 695 additions and 690 deletions

View File

@@ -12,7 +12,7 @@
//! up to a certain length. Eventually we should able to generalize
//! to all lengths.
#![unstable(feature = "unnamed_feature", since = "1.0.0")] // not yet reviewed
#![unstable(feature = "unnamed_feature")] // not yet reviewed
use clone::Clone;
use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
@@ -39,7 +39,7 @@ macro_rules! array_impls {
}
}
#[unstable(feature = "unnamed_feature", since = "1.0.0",
#[unstable(feature = "unnamed_feature",
reason = "waiting for Show to stabilize")]
impl<T:fmt::Show> fmt::Show for [T; $N] {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {