Skip to content

Commit

Permalink
replace code that refers to .lz isntead of .lzma (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospb19 authored Jan 10, 2023
1 parent 38e1953 commit 46731c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extension.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl fmt::Display for CompressionFormat {
Bzip => ".bz",
Zstd => ".zst",
Lz4 => ".lz4",
Lzma => ".lz",
Lzma => ".lzma",
Snappy => ".sz",
Tar => ".tar",
Zip => ".zip",
Expand Down
2 changes: 1 addition & 1 deletion src/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use clap::{Parser, ValueHint};
// Ouch command line options (docstrings below are part of --help)
/// 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
#[derive(Parser, Debug)]
Expand Down

0 comments on commit 46731c0

Please sign in to comment.