Skip to content

Commit e0b9d49

Browse files
Rollup merge of #54956 - kzys:close-paren, r=varkor
"(using ..." doesn't have the matching ")" Fixes #54948.
2 parents f432741 + da17e07 commit e0b9d49

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)