about summary refs log tree commit diff
path: root/library/std/src/io/stdio.rs
diff options
context:
space:
mode:
authorChris Denton <chris@chrisdenton.dev>2024-06-05 14:28:42 +0000
committerChris Denton <chris@chrisdenton.dev>2024-06-05 14:28:42 +0000
commite704858b0b41b72da9645f9a51e2e55a482fa5c4 (patch)
treea3268fb65f7dd4e7313a0ecde7a0fd6a5c970e78 /library/std/src/io/stdio.rs
parent5ee2dfd2bcbb66a69a46aaa342204e0dfdb70516 (diff)
downloadrust-e704858b0b41b72da9645f9a51e2e55a482fa5c4.tar.gz
rust-e704858b0b41b72da9645f9a51e2e55a482fa5c4.zip
Update description of the `IsTerminal` example
Diffstat (limited to 'library/std/src/io/stdio.rs')
-rw-r--r--library/std/src/io/stdio.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/library/std/src/io/stdio.rs b/library/std/src/io/stdio.rs
index c8968b74b12..9aee2bb5e1c 100644
--- a/library/std/src/io/stdio.rs
+++ b/library/std/src/io/stdio.rs
@@ -1190,9 +1190,8 @@ pub trait IsTerminal: crate::sealed::Sealed {
     ///
     /// - If you run this example by piping some text to it, e.g. `echo "foo" | path/to/executable`
     ///   it will print: `Hello foo`.
-    /// - If you instead run the example interactively by running the executable directly, it will
-    ///   panic with the message "Expected input to be piped to the process".
-    ///
+    /// - If you instead run the example interactively by running `path/to/executable` directly, it will
+    ///   prompt for input.
     ///
     /// [changes]: io#platform-specific-behavior
     /// [`Stdin`]: crate::io::Stdin