about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-01-23 09:38:43 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-01-23 09:38:43 -0500
commit9ed27a402da05617597201bbcf562fd06ddb2ffe (patch)
tree1baa2a43165d5ad143bdc885464cc486ad4b1130 /src/libstd
parentb4311b70e15d38cb97191ea4326f71f7ba9aba09 (diff)
parent52c89eee740e79ea9c565a2c4fe2d2001746d749 (diff)
downloadrust-9ed27a402da05617597201bbcf562fd06ddb2ffe.tar.gz
rust-9ed27a402da05617597201bbcf562fd06ddb2ffe.zip
Rollup merge of #31088 - tshepang:grammar, r=brson
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