Add missing module stability attributes

This commit is contained in:
Aaron Turon 2015-01-08 00:26:21 -08:00
parent 5b3cd3900c
commit e7d00ebec7
3 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,8 @@
//! let two = xs.pop();
//! ```
#![stable]
use core::prelude::*;
use alloc::boxed::Box;

View File

@ -11,6 +11,7 @@
//! Utilities for formatting and printing strings
#![allow(unused_variables)]
#![stable]
use any;
use cell::{Cell, RefCell, Ref, RefMut};

View File

@ -57,6 +57,7 @@
/// (inclusive) are allowed. A `char` can always be safely cast to a `u32`;
/// however the converse is not always true due to the above range limits
/// and, as such, should be performed via the `from_u32` function..
#[stable]
pub mod char {
pub use core::char::{MAX, from_u32, from_digit};