1
1
mirror of https://github.com/wader/fq.git synced 2024-12-23 13:22:58 +03:00

zip: s/Decompress/Uncompress/

This commit is contained in:
Mattias Wadman 2022-05-26 19:27:17 +02:00
parent d07a8520b3
commit aa694e3f20
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"`
}