We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 470996a + 6e8693b commit 8410788Copy full SHA for 8410788
src/libstd/macros.rs
@@ -64,6 +64,10 @@ macro_rules! panic {
64
///
65
/// Equivalent to the `println!` macro except that a newline is not printed at
66
/// the end of the message.
67
+///
68
+/// Note that stdout is frequently line-buffered by default so it may be
69
+/// necessary to use `io::stdout().flush()` to ensure the output is emitted
70
+/// immediately.
71
#[macro_export]
72
#[stable(feature = "rust1", since = "1.0.0")]
73
#[allow_internal_unstable]
0 commit comments