]> git.lizzy.rs Git - rust.git/commitdiff
fix some more unstable issue annotations
authorAlex Burka <aburka@seas.upenn.edu>
Thu, 27 Aug 2015 06:20:00 +0000 (02:20 -0400)
committerAlex Burka <aburka@seas.upenn.edu>
Thu, 27 Aug 2015 16:48:35 +0000 (12:48 -0400)
src/libcollections/lib.rs
src/libcollections/string.rs
src/libcore/macros.rs
src/libstd/macros.rs

index d1e91b28c46fd23028c7f451ecbe0150d16f4795..fe06e3fb2093ed456b9be851087fc9c48f0afe94 100644 (file)
@@ -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.
index 08ac64778bb02787ad99c03bb36070a322de507d..7ee2c369e19a81f2a8a29333c1ed8ae4058765a8 100644 (file)
@@ -734,7 +734,8 @@ pub fn into_boxed_str(self) -> Box<str> {
     ///
     /// 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()
index 9f4d61a50d57a18c4711fd5a63b3614bb10505b2..08dd6d76f3b32dde61a9a9102025ab37eb599840 100644 (file)
@@ -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"))
 }
index 53a14c2b21b174c8a7ef728c5a7290e86c80dbfa..317130f5f0e0200ebfad05563aae67658857653c 100644 (file)
@@ -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),+