Skip to content

Commit 24d6536

Browse files
committed
stdio_locked: add tracking issue
1 parent a8b8558 commit 24d6536

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

library/std/src/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ pub use self::error::{Error, ErrorKind, Result};
277277
pub use self::stdio::set_output_capture;
278278
#[stable(feature = "rust1", since = "1.0.0")]
279279
pub use self::stdio::{stderr, stdin, stdout, Stderr, Stdin, Stdout};
280-
#[unstable(feature = "stdio_locked", issue = "none")]
280+
#[unstable(feature = "stdio_locked", issue = "86845")]
281281
pub use self::stdio::{stderr_locked, stdin_locked, stdout_locked};
282282
#[stable(feature = "rust1", since = "1.0.0")]
283283
pub use self::stdio::{StderrLock, StdinLock, StdoutLock};

library/std/src/io/stdio.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ pub fn stdin() -> Stdin {
347347
/// Ok(())
348348
/// }
349349
/// ```
350-
#[unstable(feature = "stdio_locked", issue = "none")]
350+
#[unstable(feature = "stdio_locked", issue = "86845")]
351351
pub fn stdin_locked() -> StdinLock<'static> {
352352
stdin().into_locked()
353353
}
@@ -442,7 +442,7 @@ impl Stdin {
442442
/// Ok(())
443443
/// }
444444
/// ```
445-
#[unstable(feature = "stdio_locked", issue = "none")]
445+
#[unstable(feature = "stdio_locked", issue = "86845")]
446446
pub fn into_locked(self) -> StdinLock<'static> {
447447
self.lock_any()
448448
}
@@ -668,7 +668,7 @@ pub fn stdout() -> Stdout {
668668
/// Ok(())
669669
/// }
670670
/// ```
671-
#[unstable(feature = "stdio_locked", issue = "none")]
671+
#[unstable(feature = "stdio_locked", issue = "86845")]
672672
pub fn stdout_locked() -> StdoutLock<'static> {
673673
stdout().into_locked()
674674
}
@@ -745,7 +745,7 @@ impl Stdout {
745745
/// Ok(())
746746
/// }
747747
/// ```
748-
#[unstable(feature = "stdio_locked", issue = "none")]
748+
#[unstable(feature = "stdio_locked", issue = "86845")]
749749
pub fn into_locked(self) -> StdoutLock<'static> {
750750
self.lock_any()
751751
}
@@ -945,7 +945,7 @@ pub fn stderr() -> Stderr {
945945
/// Ok(())
946946
/// }
947947
/// ```
948-
#[unstable(feature = "stdio_locked", issue = "none")]
948+
#[unstable(feature = "stdio_locked", issue = "86845")]
949949
pub fn stderr_locked() -> StderrLock<'static> {
950950
stderr().into_locked()
951951
}
@@ -1005,7 +1005,7 @@ impl Stderr {
10051005
/// Ok(())
10061006
/// }
10071007
/// ```
1008-
#[unstable(feature = "stdio_locked", issue = "none")]
1008+
#[unstable(feature = "stdio_locked", issue = "86845")]
10091009
pub fn into_locked(self) -> StderrLock<'static> {
10101010
self.lock_any()
10111011
}

0 commit comments

Comments
 (0)