From bd701e58c51e5ddceca49ab9114afbc38f302109 Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Sat, 17 Jun 2017 12:20:25 +0200 Subject: [PATCH] docs: backticks for option values --- src/borg/archiver.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/borg/archiver.py b/src/borg/archiver.py index bcbc51c92..c1216fbd9 100644 --- a/src/borg/archiver.py +++ b/src/borg/archiver.py @@ -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='',