We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eee9f5 commit c85a9dfCopy full SHA for c85a9df
library/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