about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-04 23:40:07 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-04 23:40:07 -0800
commitdc246ae0188500c2e3c62704aa9f8b2f02fd586c (patch)
treebab622be7fa37aa9dd7ce2f217844c9b64cf42ab
parent177f8bc55c544d5a5f35ffb19f47125d001e48c4 (diff)
downloadrust-dc246ae0188500c2e3c62704aa9f8b2f02fd586c.tar.gz
rust-dc246ae0188500c2e3c62704aa9f8b2f02fd586c.zip
std: Fix missing stability on prelude
The module itself is stable (the name)
-rw-r--r--src/libstd/prelude/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/prelude/mod.rs b/src/libstd/prelude/mod.rs
index 1fbd17ede08..0496944dbaf 100644
--- a/src/libstd/prelude/mod.rs
+++ b/src/libstd/prelude/mod.rs
@@ -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;