From e1b5f78df35f9c4855a0b1ea85fcdf9f608683df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Thu, 10 Jun 2021 14:09:43 +0200 Subject: [PATCH] :nail_care: grammar in comment --- pkg/cmd/pr/shared/params.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/cmd/pr/shared/params.go b/pkg/cmd/pr/shared/params.go index ecd260645..0c0da79f2 100644 --- a/pkg/cmd/pr/shared/params.go +++ b/pkg/cmd/pr/shared/params.go @@ -20,9 +20,9 @@ func WithPrAndIssueQueryParams(client *api.Client, baseRepo ghrepo.Interface, ba if state.Title != "" { q.Set("title", state.Title) } - // We always want to set body, even if it's empty, to prevent the web interface to apply the default - // template. Since the user has the option to select a template in the terminal, assume that empty body - // here means that the user either skipped it or erased its contents. + // We always want to send the body parameter, even if it's empty, to prevent the web interface from + // applying the default template. Since the user has the option to select a template in the terminal, + // assume that empty body here means that the user either skipped it or erased its contents. q.Set("body", state.Body) if len(state.Assignees) > 0 { q.Set("assignees", strings.Join(state.Assignees, ","))