diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index 3a7430bde59d1..187a1797dac04 100644 --- a/src/libstd/fs.rs +++ b/src/libstd/fs.rs @@ -487,8 +487,8 @@ impl OpenOptions { /// This option indicates whether a new file will be created if the file /// does not yet already exist. /// - /// The file must be opened with write or append access in order to create - /// a new file. + /// In order for the file to be created, `write` or `append` access must + /// be used. /// /// # Examples ///