From 43f5c13a7ff7860bfc4c5684699ba8f30854210f Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sun, 30 May 2021 20:43:33 -0500 Subject: [PATCH] refactor/chmod ~ polish spelling (comments, names, and exceptions) --- src/uu/chmod/src/chmod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/chmod/src/chmod.rs b/src/uu/chmod/src/chmod.rs index c4bf309d6..62faacffe 100644 --- a/src/uu/chmod/src/chmod.rs +++ b/src/uu/chmod/src/chmod.rs @@ -112,7 +112,7 @@ pub fn uumain(args: impl uucore::Args) -> i32 { Arg::with_name(options::MODE) .required_unless(options::REFERENCE) .takes_value(true), - // It would be nice if clap could parse with delimeter, e.g. "g-x,u+x", + // It would be nice if clap could parse with delimiter, e.g. "g-x,u+x", // however .multiple(true) cannot be used here because FILE already needs that. // Only one positional argument with .multiple(true) set is allowed per command )