]> git.lizzy.rs Git - rust.git/commitdiff
std: Fix missing stability on prelude
authorAlex Crichton <alex@alexcrichton.com>
Mon, 5 Jan 2015 07:40:07 +0000 (23:40 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Mon, 5 Jan 2015 07:40:07 +0000 (23:40 -0800)
The module itself is stable (the name)

src/libstd/prelude/mod.rs

index 1fbd17ede08f2f70a5630b72ba815f48a82c5836..0496944dbaf88e081424a09fe7514099bcca4381 100644 (file)
@@ -35,5 +35,7 @@
 //! pervasive that it would be obnoxious to import for every use, particularly
 //! those that define methods on primitive types.
 
+#![stable]
+
 #[stable]
 pub mod v1;