replace code that refers to .lz isntead of .lzma (#344)

This commit is contained in:
João Marcos Bezerra 2023-01-10 12:21:46 -03:00 committed by GitHub
parent 38e19536af
commit 46731c0798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ impl fmt::Display for CompressionFormat {
Bzip => ".bz", Bzip => ".bz",
Zstd => ".zst", Zstd => ".zst",
Lz4 => ".lz4", Lz4 => ".lz4",
Lzma => ".lz", Lzma => ".lzma",
Snappy => ".sz", Snappy => ".sz",
Tar => ".tar", Tar => ".tar",
Zip => ".zip", Zip => ".zip",

View File

@ -5,7 +5,7 @@ use clap::{Parser, ValueHint};
// Ouch command line options (docstrings below are part of --help) // Ouch command line options (docstrings below are part of --help)
/// A command-line utility for easily compressing and decompressing files and directories. /// A command-line utility for easily compressing and decompressing files and directories.
/// ///
/// Supported formats: tar, zip, bz/bz2, gz, lz4, xz/lz/lzma, zst. /// Supported formats: tar, zip, bz/bz2, gz, lz4, xz/lzma, zst.
/// ///
/// Repository: https://github.com/ouch-org/ouch /// Repository: https://github.com/ouch-org/ouch
#[derive(Parser, Debug)] #[derive(Parser, Debug)]