Skip to content

Commit

Permalink
Rollup merge of rust-lang#54956 - kzys:close-paren, r=varkor
Browse files Browse the repository at this point in the history
"(using ..." doesn't have the matching ")"

Fixes rust-lang#54948.
  • Loading branch information
Mark-Simulacrum authored Oct 11, 2018
2 parents f432741 + da17e07 commit e0b9d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ impl OpenOptions {
/// If a file is opened with both read and append access, beware that after
/// opening, and after every write, the position for reading may be set at the
/// end of the file. So, before writing, save the current position (using
/// [`seek`]`(`[`SeekFrom`]`::`[`Current`]`(0))`, and restore it before the next read.
/// [`seek`]`(`[`SeekFrom`]`::`[`Current`]`(0))`), and restore it before the next read.
///
/// ## Note
///
Expand Down

0 comments on commit e0b9d49

Please sign in to comment.