Skip to content

Commit c85a9df

Browse files
committed
fix doc link
1 parent 1eee9f5 commit c85a9df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ pub fn write(output: &mut dyn Write, args: Arguments<'_>) -> Result {
11081108
if let Some(s) = args.as_str() { output.write_str(s) } else { write_internal(output, args) }
11091109
}
11101110

1111-
/// Actual implementation of the [`write`], but without the simple string optimization.
1111+
/// Actual implementation of the [`write()`], but without the simple string optimization.
11121112
fn write_internal(output: &mut dyn Write, args: Arguments<'_>) -> Result {
11131113
let mut formatter = Formatter::new(output);
11141114
let mut idx = 0;

0 commit comments

Comments
 (0)