We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d2b6aa commit 4ea363fCopy full SHA for 4ea363f
commitizen/commands/bump.py
@@ -130,7 +130,7 @@ def __call__(self): # noqa: C901
130
if increment is None:
131
increment = self.find_increment(commits)
132
133
- # It may happen that there are commits, but they are not elegible
+ # It may happen that there are commits, but they are not eligible
134
# for an increment, this generates a problem when using prerelease (#281)
135
if (
136
prerelease
@@ -179,7 +179,7 @@ def __call__(self): # noqa: C901
179
if increment is None and new_tag_version == current_tag_version:
180
raise NoneIncrementExit(
181
"[NO_COMMITS_TO_BUMP]\n"
182
- "The commits found are not elegible to be bumped"
+ "The commits found are not eligible to be bumped"
183
)
184
185
if self.changelog:
0 commit comments