Skip to content

Commit

Permalink
doc: modify semicolons to commas (#866)
Browse files Browse the repository at this point in the history
<!--- Provide a general summary of your changes in the Title above -->

> Fixed document errors
## Description

Modify semicolons to commas

## Motivation and Context

Found document errors while using it

## How Has This Been Tested?

<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran
to -->
<!--- see how your change affects other areas of the code, etc. -->

- [x] green ci

## Screenshots

<!-- Only if appropriate - feel free to delete this section if it's not
applicable -->

## Types of changes

<!--- What types of changes does your code introduce? Put an `x` in all
the boxes that apply: -->

- [ ] Bug fix (non-breaking change which fixes an issue)
- [x] Documentation only change
- [ ] Refactor (non-breaking change which fixes an issue without
changing functionality)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)

## Checklist

<!--- Go over all the following points, and put an `x` in all the boxes
that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're
here to help! -->

- [x] 📖

  - My change doesn't require a documentation update, or ...
  - it _does_ and I have updated it

- [x] ⚖️
- The contribution will be subject to [The MIT
license](https://github.com/sverweij/dependency-cruiser/blob/main/LICENSE),
and I'm OK with that.
  - The contribution is my own original work.
- I am ok with the stuff in
[**CONTRIBUTING.md**](https://github.com/sverweij/dependency-cruiser/blob/main/.github/CONTRIBUTING.md).
  • Loading branch information
soulhat committed Nov 15, 2023
1 parent 8b37fe3 commit aca6489
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 aca6489

Please sign in to comment.