1
1
mirror of https://github.com/wader/fq.git synced 2024-11-23 18:56:52 +03:00

Merge pull request #281 from wader/zip-fix-options-doc

zip: s/Decompress/Uncompress/
This commit is contained in:
Mattias Wadman 2022-05-26 20:00:49 +02:00 committed by GitHub
commit bba1e57942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -459,7 +459,7 @@ Supports ZIP64.
|Name |Default|Description|
|- |- |-|
|`uncompress`|true |Decompress and probe files|
|`uncompress`|true |Uncompress and probe files|
#### Examples

View File

@ -765,7 +765,7 @@ out ... | xing
out zip: ZIP archive decoder
out Supports ZIP64.
out Options:
out uncompress=true Decompress and probe files
out uncompress=true Uncompress and probe files
out Examples:
out # Decode file as zip
out $ fq -d zip . file

View File

@ -267,5 +267,5 @@ type Mp4In struct {
}
type ZipIn struct {
Uncompress bool `doc:"Decompress and probe files"`
Uncompress bool `doc:"Uncompress and probe files"`
}