Skip to content

Commit e7d00eb

Browse files
committed
Add missing module stability attributes
1 parent 5b3cd39 commit e7d00eb

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/libcollections/vec.rs

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
//! let two = xs.pop();
4545
//! ```
4646
47+
#![stable]
48+
4749
use core::prelude::*;
4850

4951
use alloc::boxed::Box;

src/libcore/fmt/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
//! Utilities for formatting and printing strings
1212
1313
#![allow(unused_variables)]
14+
#![stable]
1415

1516
use any;
1617
use cell::{Cell, RefCell, Ref, RefMut};

src/libunicode/lib.rs

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

0 commit comments

Comments
 (0)