From e4d9d1868af127a40c5652260f5cbde065f1e214 Mon Sep 17 00:00:00 2001 From: Felipe Lema <1232306+FelipeLema@users.noreply.github.com> Date: Thu, 4 Mar 2021 15:38:01 -0300 Subject: [PATCH] remove markers this can be improved in the future. this branch is just the kick-off --- src/uu/chown/src/chown.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uu/chown/src/chown.rs b/src/uu/chown/src/chown.rs index b6109b0b5..42010de03 100644 --- a/src/uu/chown/src/chown.rs +++ b/src/uu/chown/src/chown.rs @@ -40,10 +40,10 @@ pub mod options { } pub mod dereference { pub static DEREFERENCE: &str = "dereference"; - pub static NO_DEREFERENCE: &str = "no-dereference"; // not actually read? + pub static NO_DEREFERENCE: &str = "no-dereference"; } pub static FROM: &str = "from"; - pub static RECURSIVE: &str = "recursive"; // TODO(felipel) recursive, reference, traverse related? + pub static RECURSIVE: &str = "recursive"; pub mod traverse { pub static TRAVERSE: &str = "H"; pub static NO_TRAVERSE: &str = "P";