Skip to content

Commit b8f5366

Browse files
committed
fix: clarify language around optional long description prompt
1 parent e590ce4 commit b8f5366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ func promptForCommit(commitTypes []string) (string, error) {
165165
shortDescription, _ := pterm.DefaultInteractiveTextInput.WithDefaultText("Short Description").Show()
166166

167167
// This allows the user to input multiple lines of text.
168-
longDescription, _ := pterm.DefaultInteractiveTextInput.WithMultiLine().WithDefaultText("Long Description").Show()
168+
longDescription, _ := pterm.DefaultInteractiveTextInput.WithMultiLine().WithDefaultText("Long Description (optional)").Show()
169169

170170
if len(longDescription) > 0 {
171171
longDescription = "\n\n" + strings.TrimSpace(longDescription)

0 commit comments

Comments
 (0)