diff --git a/crates/uv-fs/src/lib.rs b/crates/uv-fs/src/lib.rs index 5c84928bb..ea7cdffd7 100644 --- a/crates/uv-fs/src/lib.rs +++ b/crates/uv-fs/src/lib.rs @@ -117,8 +117,6 @@ pub fn replace_symlink(src: impl AsRef, dst: impl AsRef) -> std::io: /// Create a symlink at `dst` pointing to `src`, replacing any existing symlink if necessary. /// /// On Unix, this method creates a temporary file, then moves it into place. -/// -/// TODO(charlie): Consider using the `rust-atomicwrites` crate. #[cfg(unix)] pub fn replace_symlink(src: impl AsRef, dst: impl AsRef) -> std::io::Result<()> { // Attempt to create the symlink directly.