]> git.lizzy.rs Git - rust.git/commitdiff
Add missing module stability attributes
authorAaron Turon <aturon@mozilla.com>
Thu, 8 Jan 2015 08:26:21 +0000 (00:26 -0800)
committerAaron Turon <aturon@mozilla.com>
Thu, 8 Jan 2015 08:26:21 +0000 (00:26 -0800)
src/libcollections/vec.rs
src/libcore/fmt/mod.rs
src/libunicode/lib.rs

index d9344d130b23ce097b98f830c6b285c4577cd0da..69a3947df2b5bf4b132aaed334fd8f9231800755 100644 (file)
@@ -44,6 +44,8 @@
 //! let two = xs.pop();
 //! ```
 
+#![stable]
+
 use core::prelude::*;
 
 use alloc::boxed::Box;
index 69df413a88c0dec8922df209e89f4e46565c2d7a..1d3767c9e336fcb332e186811f60d64fbb4df22f 100644 (file)
@@ -11,6 +11,7 @@
 //! Utilities for formatting and printing strings
 
 #![allow(unused_variables)]
+#![stable]
 
 use any;
 use cell::{Cell, RefCell, Ref, RefMut};
index 33b5bc4b5a432e7413e0bf106a0508a1cd850cbc..27255cc33ee6a45240f2d70e53e19998ff8b9fd3 100644 (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};