mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-25 20:41:15 -03:00
set.rst: fix synopsis glitch and make placeholder uppercase
One synopsis misrenders as
set [options] VARIABLE*[*INDICES]… VALUES…
Add a missing backslash to fix that. Also go back to uppercase
because I'm not sure why this was changed to lowercase.
Finally, remove the spurious ellipsis after VARIABLE[INDICES].
This element cannot be repeated. Multiple index values and ranges
can be specified but that's already implied by the plural INDICES.
This commit is contained in:
@@ -8,10 +8,10 @@ Synopsis
|
||||
|
||||
| ``set`` [*scope options*]
|
||||
| ``set`` [*options*] *VARIABLE* *VALUES*...
|
||||
| ``set`` [*options*] *VARIABLE*[*indicies*]... *VALUES*...
|
||||
| ``set`` [*options*] *VARIABLE*\[*INDICES*] *VALUES*...
|
||||
| ``set`` ( **-q** | **--query** ) [*scope options*] *VARIABLE* ...
|
||||
| ``set`` ( **-e** | **--erase** ) [*scope options*] *VARIABLE* ...
|
||||
| ``set`` ( **-e** | **--erase** ) [*scope options*] *VARIABLE*\[*indicies*] ...
|
||||
| ``set`` ( **-e** | **--erase** ) [*scope options*] *VARIABLE*\[*INDICES*] ...
|
||||
| ``set`` ( **-S** | **--show** ) *VARIABLE*...
|
||||
|
||||
Description
|
||||
|
||||
Reference in New Issue
Block a user