Skip to content

Commit 66ab6ac

Browse files
committed
docs: update contribution guidelines for clarity and consistency
1 parent 6f7e110 commit 66ab6ac

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ feat(blog): add comment section
6868
- `feat:` A new feature;
6969
- `fix:` A bug fix;
7070
- `docs:` Documentation only changes;
71-
- `style:` Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc);
71+
- `style:` Changes that do not affect the meaning of the code (white-space, formatting, missing semicolons, etc);
7272
- `refactor:` A code change that neither fixes a bug nor adds a feature;
7373
- `perf:` A code change that improves performance;
7474
- `build:` Changes that affect the build system or external dependencies (example scopes: nugets, npm, SDKs, etc);
7575
- `test:` Adding missing tests or correcting existing tests;
7676
- `ci:` Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs);
7777
- `chore:` Other changes that don't modify src or test files;
78-
- `merge:` Merge a branch into other branch;
78+
- `merge:` Merge a branch into another branch;
7979
- `revert:` Reverts a previous commit;
8080

8181

@@ -89,11 +89,11 @@ feat(blog): add comment section
8989

9090

9191
## <a name="tests"></a>Tests
92-
* :heavy_check_mark: **DO** add a unit test if your Pull Requests resolves an issue or adds features;
92+
* :heavy_check_mark: **DO** add a unit test if your Pull Request resolves an issue or adds features;
9393
* :heavy_check_mark: **CONSIDER** using test patterns like "AAA" and "Given When Then";
9494
* :heavy_check_mark: **DO** add a test class for each feature and a test method for each assertion;
9595
* :heavy_check_mark: **DO** make sure unit tests pass;
96-
* :x: **AVOID** adding tests just to get coverage on sonarcloud;
96+
* :x: **AVOID** adding tests just to get coverage on SonarCloud;
9797

9898
***Disclaimer***
9999
- 1️⃣ Unit in Unit Test is not a method/function;

0 commit comments

Comments
 (0)