Skip to content

Commit fa00232

Browse files
authored
fixed issue where completions would interpret tag as $(tag) and call it (#31)
1 parent dbf25d8 commit fa00232

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/opt.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub struct SearchOpts {
8383
/// If provided output will be raw so that it can be easily piped to other commands
8484
pub raw: bool,
8585
#[clap(long, short)]
86-
/// If set to `true` all entries containing any of provided tags will be returned
86+
/// If set to 'true' all entries containing any of provided tags will be returned
8787
pub any: bool,
8888
}
8989

@@ -147,7 +147,7 @@ pub enum Command {
147147
Rm(RmOpts),
148148
/// Clears all tags of the files that match the provided pattern.
149149
Clear(ClearOpts),
150-
/// Searches for files that have all of the provided `tags`.
150+
/// Searches for files that have all of the provided 'tags'.
151151
Search(SearchOpts),
152152
/// Copies tags from the specified file to files that match a pattern.
153153
Cp(CpOpts),

0 commit comments

Comments
 (0)