From 1f50df2af6f6c2726205cfdbfde96e0f9c40efc7 Mon Sep 17 00:00:00 2001 From: Pat Laster Date: Sat, 8 Oct 2022 16:47:27 -0500 Subject: [PATCH] Fixed spelling error --- src/uu/rm/src/rm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/rm/src/rm.rs b/src/uu/rm/src/rm.rs index fd3dd4a5c..bd8cb7dcb 100644 --- a/src/uu/rm/src/rm.rs +++ b/src/uu/rm/src/rm.rs @@ -530,7 +530,7 @@ fn handle_writable_directory(path: &Path, options: &Options, metadata: &Metadata } } -// For windows we can use windows metadata trait and file attirubtes to see if a directory is readonly +// For windows we can use windows metadata trait and file attributes to see if a directory is readonly #[cfg(windows)] fn handle_writable_directory(path: &Path, options: &Options, metadata: &Metadata) -> bool { use std::os::windows::prelude::MetadataExt;