mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-20 21:27:32 +00:00
docs: backticks for option values
This commit is contained in:
parent
48642d787a
commit
bd701e58c5
1 changed files with 4 additions and 4 deletions
|
@ -3583,15 +3583,15 @@ def define_common_options(add_common_option):
|
|||
'"borg help compression" command for details.')
|
||||
archive_group.add_argument('--recompress', dest='recompress', nargs='?', default='never', const='if-different',
|
||||
choices=('never', 'if-different', 'always'),
|
||||
help='recompress data chunks according to ``--compression`` if "if-different". '
|
||||
'When "always", chunks that are already compressed that way are not skipped, '
|
||||
'but compressed again. Only the algorithm is considered for "if-different", '
|
||||
help='recompress data chunks according to ``--compression`` if `if-different`. '
|
||||
'When `always`, chunks that are already compressed that way are not skipped, '
|
||||
'but compressed again. Only the algorithm is considered for `if-different`, '
|
||||
'not the compression level (if any).')
|
||||
archive_group.add_argument('--chunker-params', dest='chunker_params',
|
||||
type=ChunkerParams, default=CHUNKER_PARAMS,
|
||||
metavar='PARAMS',
|
||||
help='specify the chunker parameters (CHUNK_MIN_EXP, CHUNK_MAX_EXP, '
|
||||
'HASH_MASK_BITS, HASH_WINDOW_SIZE) or "default" to use the current defaults. '
|
||||
'HASH_MASK_BITS, HASH_WINDOW_SIZE) or `default` to use the current defaults. '
|
||||
'default: %d,%d,%d,%d' % CHUNKER_PARAMS)
|
||||
|
||||
subparser.add_argument('location', metavar='REPOSITORY_OR_ARCHIVE', nargs='?', default='',
|
||||
|
|
Loading…
Reference in a new issue