summaryrefslogtreecommitdiffstats
path: root/src/options.rs
diff options
context:
space:
mode:
authorSebastian Thiel <sthiel@thoughtworks.com>2019-06-01 20:09:30 +0530
committerSebastian Thiel <sthiel@thoughtworks.com>2019-06-01 20:14:31 +0530
commitae0182f09c0e2c3c77298cb431421cbdc64c0fa8 (patch)
treedad6439c32112bc69ddcf510693c68dc69326e42 /src/options.rs
parenta53c2acb65457df740f3605124b9e42d363897de (diff)
Simplified handling of 'no paths given' casev1.1.0
Diffstat (limited to 'src/options.rs')
-rw-r--r--src/options.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.rs b/src/options.rs
index 5c30573..76c0abc 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -40,7 +40,7 @@ pub struct Args {
#[structopt(short = "f", long = "format")]
pub format: Option<ByteFormat>,
- /// One or more input files. If unset, we will assume the current directory
+ /// One or more input files. If unset, we will use all entries in the current working directory.
#[structopt(parse(from_os_str))]
pub input: Vec<PathBuf>,
}
@@ -60,7 +60,7 @@ pub enum Command {
/// If set, no total column will be computed for multiple inputs
#[structopt(long = "no-total")]
no_total: bool,
- /// One or more input files. If unset, we will assume the current directory
+ /// One or more input files. If unset, we will use all entries in the current working directory.
#[structopt(parse(from_os_str))]
input: Vec<PathBuf>,
},