mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-30 11:21:15 -03:00
docs synopses: add space before ellipsis
This matches the style in man(1) (except that we use the … ligature). A previous iteration did the reverse (never use a space before the ellipsis). That would be a smaller change.
This commit is contained in:
@@ -7,14 +7,14 @@ Synopsis
|
||||
--------
|
||||
|
||||
| **begin**
|
||||
| [*COMMANDS*...]
|
||||
| [*COMMANDS* ...]
|
||||
| **end**
|
||||
|
||||
| **function** *NAME* [*OPTIONS*]; *COMMANDS*...; **end**
|
||||
| **if** *CONDITION*; *COMMANDS_TRUE*...; [**else**; *COMMANDS_FALSE*...;] **end**
|
||||
| **switch** *VALUE*; [**case** [*WILDCARD*...]; [*COMMANDS*...]; ...] **end**
|
||||
| **while** *CONDITION*; *COMMANDS*...; **end**
|
||||
| **for** *VARNAME* in [*VALUES*...]; **COMMANDS**...; **end**
|
||||
| **function** *NAME* [*OPTIONS*]; *COMMANDS* ...; **end**
|
||||
| **if** *CONDITION*; *COMMANDS_TRUE* ...; [**else**; *COMMANDS_FALSE* ...;] **end**
|
||||
| **switch** *VALUE*; [**case** [*WILDCARD* ...]; [*COMMANDS* ...]; ...] **end**
|
||||
| **while** *CONDITION*; *COMMANDS* ...; **end**
|
||||
| **for** *VARNAME* in [*VALUES* ...]; **COMMANDS** ...; **end**
|
||||
|
||||
Description
|
||||
-----------
|
||||
|
||||
Reference in New Issue
Block a user