Skip to content

Add missing module stability attributes #20737

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 8, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/libcollections/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
//! let two = xs.pop();
//! ```

#![stable]

use core::prelude::*;

use alloc::boxed::Box;
Expand Down
1 change: 1 addition & 0 deletions src/libcore/fmt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
//! Utilities for formatting and printing strings

#![allow(unused_variables)]
#![stable]

use any;
use cell::{Cell, RefCell, Ref, RefMut};
Expand Down
1 change: 1 addition & 0 deletions src/libunicode/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ mod u_str;
/// (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};

Expand Down