You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Summary:
- Use properly capitalized GitHub brand name
- Correctly negate two clauses using "nor" (caitp feels this may confuse
non-english speakers and need to be revised, but hopefully not)
- Correctly end sentence with period
Closes#12497
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,7 @@ format that includes a **type**, a **scope** and a **subject**:
202
202
The **header** is mandatory and the **scope** of the header is optional.
203
203
204
204
Any line of the commit message cannot be longer 100 characters! This allows the message to be easier
205
-
to read on github as well as in various git tools.
205
+
to read on GitHub as well as in various git tools.
206
206
207
207
### Revert
208
208
If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.
@@ -215,7 +215,7 @@ Must be one of the following:
215
215
***docs**: Documentation only changes
216
216
***style**: Changes that do not affect the meaning of the code (white-space, formatting, missing
217
217
semi-colons, etc)
218
-
***refactor**: A code change that neither fixes a bug or adds a feature
218
+
***refactor**: A code change that neither fixes a bug nor adds a feature
219
219
***perf**: A code change that improves performance
220
220
***test**: Adding missing tests
221
221
***chore**: Changes to the build process or auxiliary tools and libraries such as documentation
@@ -233,7 +233,7 @@ The subject contains succinct description of the change:
233
233
* no dot (.) at the end
234
234
235
235
### Body
236
-
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes"
236
+
Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
237
237
The body should include the motivation for the change and contrast this with previous behavior.
0 commit comments