summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRyan Geary <rtgnj42@gmail.com>2020-04-01 16:32:19 -0400
committerRyan Geary <rtgnj42@gmail.com>2020-04-02 10:14:29 -0400
commitb0aa310c836729f7dcaa37616d139c7571ff5e3d (patch)
tree5fc117477504336a7eabee3f180110add678e919 /src
parente78ea2783cf99de0d4dd430af403e88fc1edbf0e (diff)
Update documentation for v0.1.4v0.1.4
Diffstat (limited to 'src')
-rw-r--r--src/opt.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/opt.rs b/src/opt.rs
index 77ba9fd..77fc710 100644
--- a/src/opt.rs
+++ b/src/opt.rs
@@ -8,11 +8,11 @@ use crate::config::Config;
#[structopt(name = "choose", about = "`choose` sections from each line of files")]
#[structopt(setting = structopt::clap::AppSettings::AllowLeadingHyphen)]
pub struct Opt {
- /// Specify field separator other than whitespace
+ /// Specify field separator other than whitespace, using Rust `regex` syntax
#[structopt(short, long)]
pub field_separator: Option<String>,
- /// Use exclusive ranges, similar to array slicing in many programming languages
+ /// Use exclusive ranges, similar to array indexing in many programming languages
#[structopt(short = "x", long)]
pub exclusive: bool,