We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d065053 commit 0296e66Copy full SHA for 0296e66
core/src/fmt/mod.rs
@@ -1108,7 +1108,7 @@ pub fn write(output: &mut dyn Write, args: Arguments<'_>) -> Result {
1108
if let Some(s) = args.as_str() { output.write_str(s) } else { write_internal(output, args) }
1109
}
1110
1111
-/// Actual implementation of the [`write`], but without the simple string optimization.
+/// Actual implementation of the [`write()`], but without the simple string optimization.
1112
fn write_internal(output: &mut dyn Write, args: Arguments<'_>) -> Result {
1113
let mut formatter = Formatter::new(output);
1114
let mut idx = 0;
0 commit comments