Skip to content

Commit 6b701a7

Browse files
authored
Merge pull request #167 from commitizen-tools/fix-typo
refactor(commands/init): fix typo
2 parents 039f5e9 + c146901 commit 6b701a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

commitizen/commands/init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __call__(self):
3939

4040
def _ask_config_path(self) -> str:
4141
name = questionary.select(
42-
"Please choose a supported config file: (default: pyproject.tml)",
42+
"Please choose a supported config file: (default: pyproject.toml)",
4343
choices=long_term_support_config_files,
4444
default="pyproject.toml",
4545
style=self.cz.style,
@@ -48,7 +48,7 @@ def _ask_config_path(self) -> str:
4848

4949
def _ask_name(self) -> str:
5050
name = questionary.select(
51-
"Please choose a cz: (default: cz_conventional_commits)",
51+
"Please choose a cz (commit rule): (default: cz_conventional_commits)",
5252
choices=list(registry.keys()),
5353
default="cz_conventional_commits",
5454
style=self.cz.style,

0 commit comments

Comments
 (0)