Skip to content

Commit 7e0c855

Browse files
committed
Use plural everywhere
1 parent 2660b38 commit 7e0c855

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,13 @@ General
153153
- "last" for the last command to exit;
154154
- "all" for all commands;
155155
- "command-{name}"/"command-{index}" for the
156-
command with that name or index;
156+
commands with that name or index;
157157
- "!command-{name}"/"!command-{index}" for all
158-
commands but the one with that name or index.
158+
commands but the ones with that name or index.
159159
[default: "all"]
160160
-r, --raw Output only raw output of processes, disables
161161
prettifying and concurrently coloring. [boolean]
162-
--no-color Disables colors from logging. [boolean]
162+
--no-color Disables colors from logging [boolean]
163163
--hide Comma-separated list of processes to hide the
164164
output.
165165
The processes can be identified by their name or

src/completion-listener.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { CloseEvent, Command } from './command';
88
* - `first`: only the first specified command;
99
* - `last`: only the last specified command;
1010
* - `all`: all commands.
11-
* - `command-{name|index}`: only the command with the specified name or index.
12-
* - `!command-{name|index}`: all commands but the one with the specified name or index.
11+
* - `command-{name|index}`: only the commands with the specified names or index.
12+
* - `!command-{name|index}`: all commands but the ones with the specified names or index.
1313
*/
1414
export type SuccessCondition = 'first' | 'last' | 'all' | `command-${string|number}` | `!command-${string|number}`;
1515

0 commit comments

Comments
 (0)