Skip to content

Commit

Permalink
doc: fix markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Feb 21, 2025
1 parent df39d15 commit 6cf6536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/file/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -728,8 +728,8 @@ impl<F> NamedTempFile<F> {
/// **Atomicity:** This method is not guaranteed to be atomic on all platforms, although it will
/// generally be atomic on Windows and modern Linux filesystems. While it will never overwrite a
/// file at the target path, it may leave the original link to the temporary file behind leaving
/// you with two [hard links][] in your filesystem pointing at the same underlying file. This
/// can happen if either (a) we lack permission to "unlink" the original filename; (b) this
/// you with two [hard links][hardlink] in your filesystem pointing at the same underlying file.
/// This can happen if either (a) we lack permission to "unlink" the original filename; (b) this
/// program crashes while persisting the temporary file; or (c) the filesystem is removed,
/// unmounted, etc. while we're performing this operation.
///
Expand Down

0 comments on commit 6cf6536

Please sign in to comment.