Skip to content

Commit

Permalink
doc: modify semicolons to commas
Browse files Browse the repository at this point in the history
  • Loading branch information
soulhat authored Nov 15, 2023
1 parent 8b37fe3 commit 138ba98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/options-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ As a single regular expression:
```javascript
options: {
includeOnly: {
path: "^bin|^src|^test|^packages";
path: "^bin|^src|^test|^packages",
}
}
```
Expand All @@ -69,7 +69,7 @@ As an array of regular expressions:
```javascript
options: {
includeOnly: {
path: ["^bin", "^src", "^test", "^packages"];
path: ["^bin", "^src", "^test", "^packages"],
}
}
```
Expand All @@ -78,7 +78,7 @@ Or in shorthand:

```javascript
options: {
includeOnly: ["^bin", "^src", "^test", "^packages"];
includeOnly: ["^bin", "^src", "^test", "^packages"],
}
```

Expand Down

0 comments on commit 138ba98

Please sign in to comment.