Skip to content

Commit 19e30bd

Browse files
authored
docs: correct grammar and typos (#3775)
1 parent 0370a85 commit 19e30bd

6 files changed

+31
-31
lines changed

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
## Contents
2020

2121
- [What is commitlint](#what-is-commitlint)
22-
- [Benefits using commitlint](#benefits-using-commitlint)
22+
- [Benefits of using commitlint](#benefits-using-commitlint)
2323
- [Getting started](#getting-started)
2424
- [CLI](#cli)
2525
- [Config](#config)
@@ -76,7 +76,7 @@ Common types according to [commitlint-config-conventional (based on the Angular
7676

7777
These can be modified by [your own configuration](#config).
7878

79-
### Benefits using commitlint
79+
### Benefits of using commitlint
8080

8181
- [Why Use Conventional Commits?](https://www.conventionalcommits.org/en/v1.0.0-beta.2/#why-use-conventional-commits)
8282
- ["The perks of committing with conventions" (Talk slides)](https://slides.com/marionebl/the-perks-of-committing-with-conventions#/)
@@ -191,7 +191,7 @@ Check the [main website](https://commitlint.js.org/).
191191

192192
## Roadmap
193193

194-
`commitlint` is considered stable and is used in various projects as development tool.
194+
`commitlint` is considered stable and is used in various projects as a development tool.
195195

196196
> **Ideas**: [conventional-changelog/commitlint#94](https://github.com/conventional-changelog/commitlint/issues/94)
197197
@@ -205,16 +205,16 @@ Check the [main website](https://commitlint.js.org/).
205205
Security patches will be applied to versions which are not yet EOL.\
206206
Features will only be applied to the current main version.
207207

208-
| Release | Inital release |
209-
| -------------------------------------------------------------------------------- | -------------- |
210-
| [v18](https://github.com/conventional-changelog/commitlint/releases/tag/v18.0.0) | 10/2023 |
211-
| [v17](https://github.com/conventional-changelog/commitlint/releases/tag/v17.0.0) | 05/2022 |
212-
| [v16](https://github.com/conventional-changelog/commitlint/releases/tag/v16.0.0) | 12/2021 |
213-
| [v15](https://github.com/conventional-changelog/commitlint/releases/tag/v15.0.0) | 11/2021 |
214-
| [v14](https://github.com/conventional-changelog/commitlint/releases/tag/v14.0.0) | 10/2021 |
215-
| [v13](https://github.com/conventional-changelog/commitlint/releases/tag/v13.0.0) | 05/2021 |
216-
| [v12](https://github.com/conventional-changelog/commitlint/releases/tag/v12.0.0) | 02/2021 |
217-
| [v11](https://github.com/conventional-changelog/commitlint/releases/tag/v11.0.0) | 09/2020 |
208+
| Release | Initial release |
209+
| -------------------------------------------------------------------------------- | --------------- |
210+
| [v18](https://github.com/conventional-changelog/commitlint/releases/tag/v18.0.0) | 10/2023 |
211+
| [v17](https://github.com/conventional-changelog/commitlint/releases/tag/v17.0.0) | 05/2022 |
212+
| [v16](https://github.com/conventional-changelog/commitlint/releases/tag/v16.0.0) | 12/2021 |
213+
| [v15](https://github.com/conventional-changelog/commitlint/releases/tag/v15.0.0) | 11/2021 |
214+
| [v14](https://github.com/conventional-changelog/commitlint/releases/tag/v14.0.0) | 10/2021 |
215+
| [v13](https://github.com/conventional-changelog/commitlint/releases/tag/v13.0.0) | 05/2021 |
216+
| [v12](https://github.com/conventional-changelog/commitlint/releases/tag/v12.0.0) | 02/2021 |
217+
| [v11](https://github.com/conventional-changelog/commitlint/releases/tag/v11.0.0) | 09/2020 |
218218

219219
EOL is usually after around a year.
220220

@@ -285,11 +285,11 @@ yarn test
285285
yarn run publish --otp <one-time password>
286286
```
287287

288-
If something in between fails (like a new packages was added and needs to be published for the
289-
first time but you forgot) you can use `lerna publish from-package` to publish anythign that
288+
If something in between fails (like a new package was added and needs to be published for the
289+
first time but you forgot) you can use `lerna publish from-package` to publish anything that
290290
has not been published yet.
291291

292-
#### Create Github release
292+
#### Create GitHub release
293293

294294
1. Copy changelog entry for the new version
295295
1. Create release for the new tag: https://github.com/conventional-changelog/commitlint/releases

docs/guides-ci-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- attach_workspace:
103103
at: ~/project
104104
- run:
105-
name: Define environment variable with lastest commit's message
105+
name: Define environment variable with latest commit's message
106106
command: |
107107
echo 'export COMMIT_MESSAGE=$(git log -1 --pretty=format:"%s")' >> $BASH_ENV
108108
source $BASH_ENV

docs/guides-releases.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
Security patches will be applied to versions which are not yet EOL.
44
Features will only be applied to the current main version.
55

6-
| Release | Inital release | End-of-life |
7-
| -------------------------------------------------------------------------------- | -------------- | ----------- |
8-
| [v13](https://github.com/conventional-changelog/commitlint/releases/tag/v13.0.0) | 24.05.2021 | 24.05.2022 |
9-
| [v12](https://github.com/conventional-changelog/commitlint/releases/tag/v12.0.0) | 23.02.2021 | 23.02.2022 |
10-
| [v11](https://github.com/conventional-changelog/commitlint/releases/tag/v11.0.0) | 13.09.2020 | 13.09.2020 |
6+
| Release | Initial release | End-of-life |
7+
| -------------------------------------------------------------------------------- | --------------- | ----------- |
8+
| [v13](https://github.com/conventional-changelog/commitlint/releases/tag/v13.0.0) | 24.05.2021 | 24.05.2022 |
9+
| [v12](https://github.com/conventional-changelog/commitlint/releases/tag/v12.0.0) | 23.02.2021 | 23.02.2022 |
10+
| [v11](https://github.com/conventional-changelog/commitlint/releases/tag/v11.0.0) | 13.09.2020 | 13.09.2020 |
1111

1212
_Dates are subject to change._
1313

14-
We're not a sponsored OSS project. Therefor we can't promise that we will release patch versions for older releases in a timley manner.
14+
We're not a sponsored OSS project. Therefore we can't promise that we will release patch versions for older releases in a timely manner.
1515
If you are stuck on an older version and need a security patch we're happy if you can provide a PR.

docs/reference-api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ read({to: 'HEAD', from: 'HEAD~2'}).then((commits) =>
446446
);
447447
```
448448

449-
- **Simplfied last-commit checker**
449+
- **Simplified last-commit checker**
450450

451451
```js
452452
const load = require('@commitlint/load').default;

docs/reference-community-projects.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you want to add a project to this list [open a pull request](https://github.c
1111
## List of Projects
1212

1313
- [Gitmoji Commit Workflow](https://github.com/arvinxx/gitmoji-commit-workflow)
14-
- [commitlint.io](https://github.com/tomasen/commitlintio) - helps your project to ensures nice and tidy commit messages without needing any download or installation
14+
- [commitlint.io](https://github.com/tomasen/commitlintio) - helps your project to ensure nice and tidy commit messages without needing any download or installation
1515
- [commitlint plugin function rules](https://github.com/vidavidorra/commitlint-plugin-function-rules) - use functions as rule value to create rules based on commit messages, with regular expressions and more
1616
- [commitlint-plugin-selective-scope](https://github.com/ridvanaltun/commitlint-plugin-selective-scope) - limit scopes per type with regular expressions and plain text
1717
- [commitlint-gitlab-ci](https://gitlab.com/dmoonfire/commitlint-gitlab-ci/) - a small wrapper around `commitlint` for working with the quirks of Gitlab's CI without failing jobs

docs/reference-prompt.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ There are three fields: `settings`, `messages` and `questions`
99
Set optional options.
1010

1111
- `enableMultipleScopes`: `(boolean)` Enable multiple scopes, select scope with a radio list, disabled by default.
12-
- `scopeEnumSeparator`: `(string)` Commitlint supports [multiple scopes](./concepts-commit-conventions.md?id=multiple-scopes), you can specify the delimiter.It is applied when `enableMultipleScopes` set true.
12+
- `scopeEnumSeparator`: `(string)` Commitlint supports [multiple scopes](./concepts-commit-conventions.md?id=multiple-scopes), you can specify the delimiter. It is applied when `enableMultipleScopes` set true.
1313

1414
## `messages`
1515

1616
Set hint contents, you can configure it to support localization.
1717

18-
- `skip`: The field can be skip by enter
18+
- `skip`: The field can be skipped by pressing enter
1919
- `max`: Maximum number of characters
2020
- `min`: Minimum number of characters
21-
- `emptyWarning`: The field can not be empty
22-
- `upperLimitWarning`: The characters limit is exceeded
23-
- `lowerLimitWarning`: The characters is less than lower limit
21+
- `emptyWarning`: The field cannot be empty
22+
- `upperLimitWarning`: The character limit is exceeded
23+
- `lowerLimitWarning`: The characters are less than lower limit
2424

2525
## `questions`
2626

27-
Specify the interactive steps, Steps can only be configure in
27+
Specify the interactive steps, Steps can only be configured in
2828

2929
- `header`
3030
- `type`

0 commit comments

Comments
 (0)