about summary refs log tree commit diff
path: root/library/std/src/io/stdio.rs
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2022-04-06 17:26:33 +0200
committerGitHub <noreply@github.com>2022-04-06 17:26:33 +0200
commitf87d180e7d36e761ef51fb33d9ee2406424de8ee (patch)
tree95e865d183d587f464a2d9299e79cf512b14f39d /library/std/src/io/stdio.rs
parent243742262265164795c3dd0ee2df1bfa15d51cf8 (diff)
downloadrust-f87d180e7d36e761ef51fb33d9ee2406424de8ee.tar.gz
rust-f87d180e7d36e761ef51fb33d9ee2406424de8ee.zip
Bump stabilization of stdin_forwarders to 1.62.0.
Diffstat (limited to 'library/std/src/io/stdio.rs')
-rw-r--r--library/std/src/io/stdio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/stdio.rs b/library/std/src/io/stdio.rs
index 38558fb5740..ae16015e35a 100644
--- a/library/std/src/io/stdio.rs
+++ b/library/std/src/io/stdio.rs
@@ -402,7 +402,7 @@ impl Stdin {
     /// }
     /// ```
     #[must_use = "`self` will be dropped if the result is not used"]
-    #[stable(feature = "stdin_forwarders", since = "1.61.0")]
+    #[stable(feature = "stdin_forwarders", since = "1.62.0")]
     pub fn lines(self) -> Lines<StdinLock<'static>> {
         self.lock().lines()
     }