Skip to content

Commit ae7221c

Browse files
authored
Update completions-06-wt6.md
1 parent 34b49be commit ae7221c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stage_descriptions/completions-06-wt6.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For example, if these executables exist in PATH:
1212

1313
When the user types `xyz_` and presses tab, the shell completes to `xyz_foo` because that is the longest prefix shared by all three executables.
1414

15-
Each subsequent tab press completes to the next common prefix:
15+
After the user types the next separator character, pressing tab completes to the next common prefix of the remaining matches:
1616

1717
```bash
1818
# Note: The prompt lines below are displayed on the same line
@@ -22,7 +22,7 @@ $ xyz_foo_bar_<TAB>
2222
$ xyz_foo_bar_baz
2323
```
2424

25-
If there is only one match after performing completion, then the shell should complete the command name as in previous stages (with a trailing space).
25+
If there is only one match after performing completion, then the shell should complete the command name as with previous stages (with a trailing space).
2626

2727
### Tests
2828

0 commit comments

Comments
 (0)