Skip to content

Commit

Permalink
Accurate help message for -x/exclude.
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Brown committed Nov 22, 2022
1 parent 37d7aec commit f634188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async fn main() -> Result<()> {
.short('x')
.long("exclude")
.action(SetTrue)
.help("Include all missing and ancestral values, so that a returned table may contain indirect (missing/ancestral) measures. By default, if multiple variables are requested, a row is only returned if all the variables have a direct value. Will only take effect if one or more variables are specified.")
.help("Exclude all missing and ancestral values, so that a returned table may contain only direct measures (excluding missing/ancestral). If multiple variables are requested, a row is only returned if all the variables have a direct value. Will only take effect if one or more variables are specified.")
)
// display level 1
.arg(
Expand Down Expand Up @@ -348,7 +348,7 @@ async fn main() -> Result<()> {
.short('x')
.long("exclude")
.action(SetTrue)
.help("Include all missing and ancestral values, so that a returned table may contain indirect (missing/ancestral) measures. By default, if multiple variables are requested, a row is only returned if all the variables have a direct value. Will only take effect if one or more variables are specified.")
.help("Exclude all missing and ancestral values, so that a returned table may contain only direct measures (excluding missing/ancestral). If multiple variables are requested, a row is only returned if all the variables have a direct value. Will only take effect if one or more variables are specified.")
)
// flags
.arg(
Expand Down

0 comments on commit f634188

Please sign in to comment.