From a7a17e436fd463f422334d749d7ab04709b2ef85 Mon Sep 17 00:00:00 2001 From: reuben olinsky Date: Thu, 5 Sep 2024 00:18:56 -0700 Subject: [PATCH] fix warnings --- brush-shell/src/args.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/brush-shell/src/args.rs b/brush-shell/src/args.rs index 266a1235..64310ce7 100644 --- a/brush-shell/src/args.rs +++ b/brush-shell/src/args.rs @@ -57,12 +57,12 @@ pub struct CommandLineArgs { #[clap(long = "noediting")] pub no_editing: bool, - /// Don't process any profile/login files (/etc/profile, ~/.bash_profile, ~/.bash_login, - /// ~/.profile). + /// Don't process any profile/login files (`/etc/profile`, `~/.bash_profile`, `~/.bash_login`, + /// `~/.profile`). #[clap(long = "noprofile")] pub no_profile: bool, - /// Don't process "rc" files if the shell is interactive (e.g., ~/.bashrc, ~/.brushrc). + /// Don't process "rc" files if the shell is interactive (e.g., `~/.bashrc`, `~/.brushrc`). #[clap(long = "norc")] pub no_rc: bool,