From 2a7bef640daf8d041b95a100ef014b565270b0c7 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Thu, 21 Jan 2016 23:27:18 +0200 Subject: [PATCH] doc: this sentence did not read well --- src/libstd/fs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index 414a0ebd11fa2..67d885081478d 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 ///