summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-12-09 00:13:28 -0500
committerDan Davison <dandavison7@gmail.com>2021-12-09 00:14:14 -0500
commit5ea8dfc4331f072eff4db3e4827e9b7985433a8a (patch)
tree84af634f079677618b9495375a9039c59ab19bc2
parent424fe8b59ad33cf80ec16b33c858525daec82716 (diff)
Fix documentation of --width option
Fixes #61
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 19b200ff..e0478895 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -674,8 +674,8 @@ pub struct Opt {
pub line_fill_method: Option<String>,
/// The width of underline/overline decorations. Examples: "72" (exactly 72 characters),
- // "-2" (auto-detected terminal width minus 2). An expression such as "74-2" is also valid
- // (equivalent to 72 but may be useful if the caller has a variable holding the value "74").
+ /// "-2" (auto-detected terminal width minus 2). An expression such as "74-2" is also valid
+ /// (equivalent to 72 but may be useful if the caller has a variable holding the value "74").
/// Use --width=variable to extend decorations and background colors to the end of the text
/// only. Otherwise background colors extend to the full terminal width.
#[structopt(short = "w", long = "width")]