Fix manpage for --zi (#653)
I don't know if this is a bug in the mangen but it seems to require
explicitly setting the value name to display correctly.
Before:
```
--zi [default: 15]
Set the number of iterations to use for Zopfli compression.
```
After:
```
--zi=iterations [default: 15]
Set the number of iterations to use for Zopfli compression.
```
This does not affect MANUAL.txt or the built-in help.
This commit is contained in:
parent
f8c84c258d
commit
262082f546
1 changed files with 1 additions and 0 deletions
|
|
@ -344,6 +344,7 @@ Recommended use is with '-o max' and '--fast'.")
|
|||
Set the number of iterations to use for Zopfli compression. Using fewer iterations may \
|
||||
speed up compression for large files. This option requires '--zopfli' to be set.")
|
||||
.long("zi")
|
||||
.value_name("iterations")
|
||||
.default_value("15")
|
||||
.value_parser(1..=255)
|
||||
.requires("zopfli"),
|
||||
|
|
|
|||
Loading…
Reference in a new issue