about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-01-21 23:14:47 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2016-01-21 23:14:47 +0200
commit52c89eee740e79ea9c565a2c4fe2d2001746d749 (patch)
treeba3f6359a1fd94d47ce672b60364bfa6d0d2cc89 /src/libstd
parentc6ba7fee97e6834f3a72281f88621c10bd562669 (diff)
downloadrust-52c89eee740e79ea9c565a2c4fe2d2001746d749.tar.gz
rust-52c89eee740e79ea9c565a2c4fe2d2001746d749.zip
doc: improve grammar
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 414a0ebd11f..3a7430bde59 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -414,7 +414,7 @@ impl OpenOptions {
     /// This option, when true, will indicate that the file should be
     /// `write`-able if opened.
     ///
-    /// If a file already exist, any write calls on the file will overwrite its
+    /// If the file already exists, any write calls on it will overwrite its
     /// contents, without truncating it.
     ///
     /// # Examples