Skip to content

Commit 2c188ac

Browse files
committed
docs(CONTRIBUTING): itemize globpat explanations
1 parent 8388be9 commit 2c188ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ Also, please bear the following coding guidelines in mind:
6767
external programs, which are expensive to fork and execute, so do
6868
make full use of those:
6969

70-
`?(pattern-list)` - match zero or one occurrences of patterns
71-
`*(pattern-list)` - match zero or more occurrences of patterns
72-
`+(pattern-list)` - match one or more occurrences of patterns
73-
`@(pattern-list)` - match exactly one of the given patterns
74-
`!(pattern-list)` - match anything except one of the given patterns
70+
- `?(pattern-list)` - match zero or one occurrences of patterns
71+
- `*(pattern-list)` - match zero or more occurrences of patterns
72+
- `+(pattern-list)` - match one or more occurrences of patterns
73+
- `@(pattern-list)` - match exactly one of the given patterns
74+
- `!(pattern-list)` - match anything except one of the given patterns
7575

7676
- Following on from the last point, be sparing with the use of
7777
external processes whenever you can. Completion functions need to be

0 commit comments

Comments
 (0)