pages*: remove curly braces from example descriptions (#11462)

This commit is contained in:
Lena
2023-11-12 04:08:58 +01:00
committed by GitHub
parent 02ed916a89
commit 8da5a29a70
29 changed files with 63 additions and 63 deletions

View File

@@ -3,11 +3,11 @@
> A zsh builtin to indicate how a given command would be interpreted.
> More information: <https://www.unix.com/man-page/OpenSolaris/1/whence/>.
- Interpret {{command}}, with expansion if defined as an `alias` (similar to the `command -v` builtin):
- Interpret `command`, with expansion if defined as an `alias` (similar to the `command -v` builtin):
`whence "{{command}}"`
- Display type of {{command}}, with location if defined as a function, or binary (equivalent to the `type` and `command -V` builtins):
- Display type of `command`, with location if defined as a function, or binary (equivalent to the `type` and `command -V` builtins):
`whence -v "{{command}}"`
@@ -19,6 +19,6 @@
`whence -ca "{{command}}"`
- Search only the `PATH` for {{command}}, ignoring builtins, aliases or shell functions (equivalent to the `where` command):
- Search only the `PATH` for `command`, ignoring builtins, aliases or shell functions (equivalent to the `where` command):
`whence -p "{{command}}"`