Skip to content

Commit a108872

Browse files
authored
Merge pull request #198 from commitizen-tools/add-github-page-link-to-readme
Add GitHub page link to readme
2 parents f616e6e + d85b649 commit a108872

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ versions](https://img.shields.io/pypi/pyversions/commitizen.svg?style=flat-squar
99

1010
![Using commitizen cli](images/demo.gif)
1111

12+
View full [documentation](https://commitizen-tools.github.io/commitizen/).
13+
1214
## About
1315

1416
Commitizen is a tool designed for teams.

docs/bump.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ optional arguments:
7171
the format used to tag the commit and read it, use it
7272
in existing projects, wrap around simple quotes
7373
--bump-message BUMP_MESSAGE
74-
template used to create the release commmit, useful
74+
template used to create the release commit, useful
7575
when working with CI
7676
--prerelease {alpha,beta,rc}, -pr {alpha,beta,rc}
7777
choose type of prerelease

docs/changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## About
22

3-
This command will generate a changelog following the commiting rules established.
3+
This command will generate a changelog following the committing rules established.
44

55
## Usage
66

@@ -66,7 +66,7 @@ and the following variables are expected:
6666
| `change_type` | The group where the commit belongs to, this is optional. Example: fix | `commit regex` |
6767
| `message`\* | Information extracted from the commit message | `commit regex` |
6868
| `scope` | Contextual information. Should be parsed using the regex from the message, it will be **bold** | `commit regex` |
69-
| `breaking` | Wether is a breaking change or not | `commit regex` |
69+
| `breaking` | Whether is a breaking change or not | `commit regex` |
7070
7171
- **required**: is the only one required to be parsed by the regex
7272

docs/customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class StrangeCommitizen(BaseCommitizen):
177177
the new updated full_changelog
178178
"""
179179
if partial_changelog:
180-
chat.room("#commiters").notify(partial_changelog)
180+
chat.room("#committers").notify(partial_changelog)
181181
if full_changelog:
182182
compliance.send(full_changelog)
183183
full_changelog.replace(' fix ', ' **fix** ')
@@ -214,7 +214,7 @@ name = "cz_customize"
214214

215215
[tool.commitizen.customize]
216216
message_template = "{{change_type}}:{% if show_message %} {{message}}{% endif %}"
217-
example = "feature: this feature eanable customize through config file"
217+
example = "feature: this feature enable customize through config file"
218218
schema = "<type>: <body>"
219219
bump_pattern = "^(break|new|fix|hotfix)"
220220
bump_map = {"break" = "MAJOR", "new" = "MINOR", "fix" = "PATCH", "hotfix" = "PATCH"}

0 commit comments

Comments
 (0)