Skip to content

Commit 3a80411

Browse files
committed
Auto merge of #28038 - durka:grep-unstable-issue-refs, r=alexcrichton
After submitting #28031, I ran a [script](https://gist.github.com/durka/a5243440697c780f669b) on the rest of src/ and found some anomalies. In this PR are the fixes that I thought were obvious (but I might be wrong!). The others I've submitted in issue #28037.
2 parents 20a8412 + 595fda0 commit 3a80411

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

src/libcollections/lib.rs

Lines changed: 1 addition & 1 deletion
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.

src/libcollections/string.rs

Lines changed: 2 additions & 1 deletion
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()

src/libcore/macros.rs

Lines changed: 4 additions & 2 deletions
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")
@@ -301,7 +302,8 @@ macro_rules! unreachable {
301302
/// ```
302303
#[macro_export]
303304
#[unstable(feature = "core",
304-
reason = "relationship with panic is unclear")]
305+
reason = "relationship with panic is unclear",
306+
issue = "27701")]
305307
macro_rules! unimplemented {
306308
() => (panic!("not yet implemented"))
307309
}

src/libstd/macros.rs

Lines changed: 1 addition & 1 deletion
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)