From 65e6970907e55c4e0c5cc72037bb0053b33e3673 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Tue, 12 Jun 2018 08:01:44 +0200 Subject: [PATCH] Change help text for --line-range --- src/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index b8e9942c..44fa6d35 100644 --- a/src/app.rs +++ b/src/app.rs @@ -146,7 +146,8 @@ impl App { .long("line-range") .overrides_with("line-range") .takes_value(true) - .help("Print range of lines") + .value_name("n:m") + .help("Only print the lines from n to m") .long_help( "Print a specified range or ranges of lines from the files. \ For example: '--line-range 30:40' will print lines 30 to 40 \n\