1
Fork 0

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

Fixes #54948.
This commit is contained in:
Kazuyoshi Kato 2018-10-10 01:09:18 -07:00
parent 4623d48893
commit da17e07c14

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