about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Burka <aburka@seas.upenn.edu>2015-08-27 02:20:00 -0400
committerAlex Burka <aburka@seas.upenn.edu>2015-08-27 12:48:35 -0400
commit595fda0de7fda252559b717e2e56b3b1eef1961e (patch)
treecc1d3473672957f2fe120398bd9453e46a8471b7
parentfd302a95e1197e5f8401ecaa15f2cb0f81c830c3 (diff)
downloadrust-595fda0de7fda252559b717e2e56b3b1eef1961e.tar.gz
rust-595fda0de7fda252559b717e2e56b3b1eef1961e.zip
fix some more unstable issue annotations
-rw-r--r--src/libcollections/lib.rs2
-rw-r--r--src/libcollections/string.rs3
-rw-r--r--src/libcore/macros.rs6
-rw-r--r--src/libstd/macros.rs2
4 files changed, 8 insertions, 5 deletions
diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs
index d1e91b28c46..fe06e3fb209 100644
--- a/src/libcollections/lib.rs
+++ b/src/libcollections/lib.rs
@@ -113,7 +113,7 @@ mod std {
 }
 
 /// An endpoint of a range of keys.
-#[unstable(feature = "collections_bound", issue = "27711")]
+#[unstable(feature = "collections_bound", issue = "27787")]
 #[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
 pub enum Bound<T> {
     /// An inclusive bound.
diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs
index 08ac64778bb..7ee2c369e19 100644
--- a/src/libcollections/string.rs
+++ b/src/libcollections/string.rs
@@ -734,7 +734,8 @@ impl String {
     ///
     /// Note that this will drop any excess capacity.
     #[unstable(feature = "box_str",
-               reason = "recently added, matches RFC")]
+               reason = "recently added, matches RFC",
+               issue = "27785")]
     #[deprecated(since = "1.4.0", reason = "renamed to `into_boxed_str`")]
     pub fn into_boxed_slice(self) -> Box<str> {
         self.into_boxed_str()
diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs
index 9f4d61a50d5..08dd6d76f3b 100644
--- a/src/libcore/macros.rs
+++ b/src/libcore/macros.rs
@@ -239,7 +239,8 @@ macro_rules! writeln {
 /// ```
 #[macro_export]
 #[unstable(feature = "core",
-           reason = "relationship with panic is unclear")]
+           reason = "relationship with panic is unclear",
+           issue = "27701")]
 macro_rules! unreachable {
     () => ({
         panic!("internal error: entered unreachable code")
@@ -256,7 +257,8 @@ macro_rules! unreachable {
 /// message `"not yet implemented"` when executed.
 #[macro_export]
 #[unstable(feature = "core",
-           reason = "relationship with panic is unclear")]
+           reason = "relationship with panic is unclear",
+           issue = "27701")]
 macro_rules! unimplemented {
     () => (panic!("not yet implemented"))
 }
diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs
index 53a14c2b21b..317130f5f0e 100644
--- a/src/libstd/macros.rs
+++ b/src/libstd/macros.rs
@@ -168,7 +168,7 @@ macro_rules! try {
 ///
 /// For more information about select, see the `std::sync::mpsc::Select` structure.
 #[macro_export]
-#[unstable(feature = "mpsc_select")]
+#[unstable(feature = "mpsc_select", issue = "27800")]
 macro_rules! select {
     (
         $($name:pat = $rx:ident.$meth:ident() => $code:expr),+