Skip to content

Commit c91ad5d

Browse files
joshtriplettMark-Simulacrum
authored andcommitted
Improve documentation for File::options to give a more likely example
`File::options().read(true).open(...)` is equivalent to just `File::open`. Change the example to set the `append` flag instead, and then change the filename to something more likely to be written in append mode.
1 parent 89b9f7b commit c91ad5d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

library/std/src/fs.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,10 @@ impl File {
356356
/// open or create a file with specific options if `open()` or `create()`
357357
/// are not appropriate.
358358
///
359-
/// It is equivalent to `OpenOptions::new()` but allows you to write more
360-
/// readable code. Instead of `OpenOptions::new().read(true).open("foo.txt")`
361-
/// you can write `File::options().read(true).open("foo.txt")`. This
359+
/// It is equivalent to `OpenOptions::new()`, but allows you to write more
360+
/// readable code. Instead of
361+
/// `OpenOptions::new().append(true).open("example.log")`,
362+
/// you can write `File::options().append(true).open("example.log")`. This
362363
/// also avoids the need to import `OpenOptions`.
363364
///
364365
/// See the [`OpenOptions::new`] function for more details.
@@ -369,7 +370,7 @@ impl File {
369370
/// use std::fs::File;
370371
///
371372
/// fn main() -> std::io::Result<()> {
372-
/// let mut f = File::options().read(true).open("foo.txt")?;
373+
/// let mut f = File::options().append(true).open("example.log")?;
373374
/// Ok(())
374375
/// }
375376
/// ```

0 commit comments

Comments
 (0)