auto merge of #20737 : aturon/rust/stab-stragglers, r=alexcrichton
Marks `vec`, `char` and `fmt` as stable module names.
This commit is contained in:
commit
5364c4853f
3 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,8 @@
|
|||
//! let two = xs.pop();
|
||||
//! ```
|
||||
|
||||
#![stable]
|
||||
|
||||
use core::prelude::*;
|
||||
|
||||
use alloc::boxed::Box;
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
//! Utilities for formatting and printing strings
|
||||
|
||||
#![allow(unused_variables)]
|
||||
#![stable]
|
||||
|
||||
use any;
|
||||
use cell::{Cell, RefCell, Ref, RefMut};
|
||||
|
|
|
@ -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};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue