pages*: remove mnemonics when highlighting both long and short options (#12936)

This commit is contained in:
Sebastiaan Speck
2024-06-12 07:43:11 +02:00
committed by GitHub
parent d9b72a9e37
commit f1d0051ee8
12 changed files with 40 additions and 40 deletions

View File

@@ -3,7 +3,7 @@
> Azure Storage API compatible server (emulator) in local environment.
> More information: <https://www.npmjs.com/package/azurite>.
- Use an existing [l]ocation as workspace path:
- Use an existing location as workspace path:
`azurite {{-l|--location}} {{path/to/directory}}`
@@ -11,7 +11,7 @@
`azurite {{-s|--silent}}`
- Enable [d]ebug log by providing a file path as log destination:
- Enable debug log by providing a file path as log destination:
`azurite {{-d|--debug}} {{path/to/debug.log}}`

View File

@@ -7,7 +7,7 @@
`diff {{old_file}} {{new_file}}`
- Compare files, ignoring [w]hite spaces:
- Compare files, ignoring white spaces:
`diff {{-w|--ignore-all-space}} {{old_file}} {{new_file}}`
@@ -15,11 +15,11 @@
`diff {{-y|--side-by-side}} {{old_file}} {{new_file}}`
- Compare files, showing the differences in [u]nified format (as used by `git diff`):
- Compare files, showing the differences in unified format (as used by `git diff`):
`diff {{-u|--unified}} {{old_file}} {{new_file}}`
- Compare directories [r]ecursively (shows names for differing files/directories as well as changes made to files):
- Compare directories recursively (shows names for differing files/directories as well as changes made to files):
`diff {{-r|--recursive}} {{old_directory}} {{new_directory}}`

View File

@@ -7,11 +7,11 @@
`git archive --verbose HEAD`
- Use the Zip format and report progress [v]erbosely:
- Use the Zip format and report progress verbosely:
`git archive {{-v|--verbose}} --format zip HEAD`
- [o]utput the Zip archive to a specific file:
- Output the Zip archive to a specific file:
`git archive -v {{-o|--output}} {{path/to/file.zip}} HEAD`

View File

@@ -7,11 +7,11 @@
`pydocstyle {{file.py|path/to/directory}}`
- Show an [e]xplanation of each error:
- Show an explanation of each error:
`pydocstyle {{-e|--explain}} {{file.py|path/to/directory}}`
- Show [d]ebug information:
- Show debug information:
`pydocstyle {{-d|--debug}} {{file.py|path/to/directory}}`