X Tutup
Skip to content

Commit e1b5f78

Browse files
committed
💅 grammar in comment
1 parent 606deaf commit e1b5f78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/cmd/pr/shared/params.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ func WithPrAndIssueQueryParams(client *api.Client, baseRepo ghrepo.Interface, ba
2020
if state.Title != "" {
2121
q.Set("title", state.Title)
2222
}
23-
// We always want to set body, even if it's empty, to prevent the web interface to apply the default
24-
// template. Since the user has the option to select a template in the terminal, assume that empty body
25-
// here means that the user either skipped it or erased its contents.
23+
// We always want to send the body parameter, even if it's empty, to prevent the web interface from
24+
// applying the default template. Since the user has the option to select a template in the terminal,
25+
// assume that empty body here means that the user either skipped it or erased its contents.
2626
q.Set("body", state.Body)
2727
if len(state.Assignees) > 0 {
2828
q.Set("assignees", strings.Join(state.Assignees, ","))

0 commit comments

Comments
 (0)
X Tutup