1
Fork 0

Rollup merge of #54956 - kzys:close-paren, r=varkor

"(using ..." doesn't have the matching ")"

Fixes #54948.
This commit is contained in:
kennytm 2018-10-12 22:04:14 +08:00 committed by GitHub
commit 8e3f189180
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
///