diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs index b60a84da81ddf..e6e26060fbdd4 100644 --- a/src/libstd/fs.rs +++ b/src/libstd/fs.rs @@ -422,6 +422,11 @@ impl OpenOptions { /// This option, when true, means that writes will append to a file instead /// of overwriting previous contents. /// + /// Note that this isn't the same as `write` with the cursor starting at + /// the end of the file; this mode only allows writing to the end of the + /// file, but not changing any of its previous contents. This is common for + /// things like log files. + /// /// # Examples /// /// ```no_run