Skip to content

Commit

Permalink
Update library/std/src/fs.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Mara Bos <[email protected]>
  • Loading branch information
hniksic and m-ou-se authored Apr 16, 2024
1 parent 0f50aea commit 8ba98b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ impl OpenOptions {
///
/// Append mode guarantees that writes will be positioned at the current end of file,
/// even when there are other processes or threads appending to the same file. This is
/// unlike <code>[seek]\([SeekFrom]::[End]\(0))</code>` followed by `write()`, which
/// unlike <code>[seek]\([SeekFrom]::[End]\(0))</code> followed by `write()`, which
/// has a race between seeking and writing during which another writer can write, with
/// our `write()` overwriting their data.
///
Expand Down

0 comments on commit 8ba98b6

Please sign in to comment.