about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorKazuyoshi Kato <kato.kazuyoshi@gmail.com>2018-10-10 01:09:18 -0700
committerKazuyoshi Kato <kato.kazuyoshi@gmail.com>2018-10-10 01:09:18 -0700
commitda17e07c14a6d488e3cf92de6f9ad1ada7f780b0 (patch)
tree729446cb08d85a18689d7378f0db7011b134ba9a /src/libstd
parent4623d4889373702428251967d9bf6ff6d677ec1a (diff)
downloadrust-da17e07c14a6d488e3cf92de6f9ad1ada7f780b0.tar.gz
rust-da17e07c14a6d488e3cf92de6f9ad1ada7f780b0.zip
"(using ..." doesn't have the matching ")"
Fixes #54948.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index f14d55cb2d3..017949291bc 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -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
     ///