Skip to content

Commit 595fda0

Browse files
committed
fix some more unstable issue annotations
1 parent fd302a9 commit 595fda0

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Diff for: src/libcollections/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ mod std {
113113
}
114114

115115
/// An endpoint of a range of keys.
116-
#[unstable(feature = "collections_bound", issue = "27711")]
116+
#[unstable(feature = "collections_bound", issue = "27787")]
117117
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
118118
pub enum Bound<T> {
119119
/// An inclusive bound.

Diff for: src/libcollections/string.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,8 @@ impl String {
734734
///
735735
/// Note that this will drop any excess capacity.
736736
#[unstable(feature = "box_str",
737-
reason = "recently added, matches RFC")]
737+
reason = "recently added, matches RFC",
738+
issue = "27785")]
738739
#[deprecated(since = "1.4.0", reason = "renamed to `into_boxed_str`")]
739740
pub fn into_boxed_slice(self) -> Box<str> {
740741
self.into_boxed_str()

Diff for: src/libcore/macros.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,8 @@ macro_rules! writeln {
239239
/// ```
240240
#[macro_export]
241241
#[unstable(feature = "core",
242-
reason = "relationship with panic is unclear")]
242+
reason = "relationship with panic is unclear",
243+
issue = "27701")]
243244
macro_rules! unreachable {
244245
() => ({
245246
panic!("internal error: entered unreachable code")
@@ -256,7 +257,8 @@ macro_rules! unreachable {
256257
/// message `"not yet implemented"` when executed.
257258
#[macro_export]
258259
#[unstable(feature = "core",
259-
reason = "relationship with panic is unclear")]
260+
reason = "relationship with panic is unclear",
261+
issue = "27701")]
260262
macro_rules! unimplemented {
261263
() => (panic!("not yet implemented"))
262264
}

Diff for: src/libstd/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ macro_rules! try {
168168
///
169169
/// For more information about select, see the `std::sync::mpsc::Select` structure.
170170
#[macro_export]
171-
#[unstable(feature = "mpsc_select")]
171+
#[unstable(feature = "mpsc_select", issue = "27800")]
172172
macro_rules! select {
173173
(
174174
$($name:pat = $rx:ident.$meth:ident() => $code:expr),+

0 commit comments

Comments
 (0)