We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cd9c49 commit 7184849Copy full SHA for 7184849
src/file_op.rs
@@ -256,7 +256,7 @@ async fn save_file(
256
match err.kind() {
257
ErrorKind::CrossesDevices => {
258
warn!(
259
- "File writen to {temp_path:?} must be copied to {file_path:?} because it's on a different filesystem"
+ "File written to {temp_path:?} must be copied to {file_path:?} because it's on a different filesystem"
260
);
261
let copy_result = tokio::fs::copy(&temp_path, &file_path).await;
262
if let Err(e) = tokio::fs::remove_file(&temp_path).await {
0 commit comments