Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
moozzi committed Jan 10, 2024
1 parent 277ec14 commit b9d3cbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ronin/cli/commands/archive.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ module Commands
# ## Options
#
# -t, --tar tar archive the data
# -z, --zip zip compress the data
# -z, --zip zip archive the data
# -n, --name Archived file name
#
# ## Arguments
#
# [FILE ...] Optional file(s) to compress
# [FILE ...] Optional file(s) to archive
#
class Archive < FileProcessorCommand
usage '[options] [FILE ...]'
Expand All @@ -48,7 +48,7 @@ class Archive < FileProcessorCommand
end

option :zip, short: '-z',
desc: 'zip compress the data' do
desc: 'zip archive the data' do
@archive_method = :zip
end

Expand All @@ -62,7 +62,7 @@ class Archive < FileProcessorCommand

description 'Archive the data'

man_page 'ronin-compress.1'
man_page 'ronin-archive.1'

#
# The archive format.
Expand Down

0 comments on commit b9d3cbe

Please sign in to comment.