Skip to content

Commit da17e07

Browse files
committed
"(using ..." doesn't have the matching ")"
Fixes #54948.
1 parent 4623d48 commit da17e07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ impl OpenOptions {
726726
/// If a file is opened with both read and append access, beware that after
727727
/// opening, and after every write, the position for reading may be set at the
728728
/// end of the file. So, before writing, save the current position (using
729-
/// [`seek`]`(`[`SeekFrom`]`::`[`Current`]`(0))`, and restore it before the next read.
729+
/// [`seek`]`(`[`SeekFrom`]`::`[`Current`]`(0))`), and restore it before the next read.
730730
///
731731
/// ## Note
732732
///

0 commit comments

Comments
 (0)