Skip to content

Commit 4965f0a

Browse files
alecgeronaLee-W
authored andcommitted
fix(cli): wrap the word enter with brackets
1 parent 78c4529 commit 4965f0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

commitizen/cz/conventional_commits/conventional_commits.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def questions(self) -> List[Dict[str, Any]]:
100100
"type": "input",
101101
"name": "scope",
102102
"message": (
103-
"What is the scope of this change? (class or file name): (press enter to skip)\n"
103+
"What is the scope of this change? (class or file name): (press [enter] to skip)\n"
104104
),
105105
"filter": parse_scope,
106106
},
@@ -116,7 +116,7 @@ def questions(self) -> List[Dict[str, Any]]:
116116
"type": "input",
117117
"name": "body",
118118
"message": (
119-
"Provide additional contextual information about the code changes: (press enter to skip)\n"
119+
"Provide additional contextual information about the code changes: (press [enter] to skip)\n"
120120
),
121121
"filter": multiple_line_breaker,
122122
},
@@ -131,7 +131,7 @@ def questions(self) -> List[Dict[str, Any]]:
131131
"name": "footer",
132132
"message": (
133133
"Footer. Information about Breaking Changes and "
134-
"reference issues that this commit closes: (press enter to skip)\n"
134+
"reference issues that this commit closes: (press [enter] to skip)\n"
135135
),
136136
},
137137
]

0 commit comments

Comments
 (0)