aboutsummaryrefslogtreecommitdiff
path: root/git-codereview
diff options
context:
space:
mode:
Diffstat (limited to 'git-codereview')
-rw-r--r--git-codereview/api.go2
-rw-r--r--git-codereview/submit.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/git-codereview/api.go b/git-codereview/api.go
index 1b9d0e0..da3fa76 100644
--- a/git-codereview/api.go
+++ b/git-codereview/api.go
@@ -316,7 +316,7 @@ func gerritAPI(path string, requestBody []byte, target interface{}) (err error)
return nil
}
-// fullChangeID returns the unambigous Gerrit change ID for the commit c on branch b.
+// fullChangeID returns the unambiguous Gerrit change ID for the commit c on branch b.
// The returned ID has the form project~originbranch~Ihexhexhexhexhex.
// See https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#change-id for details.
func fullChangeID(b *Branch, c *Commit) string {
diff --git a/git-codereview/submit.go b/git-codereview/submit.go
index 6cfb809..4bbbf32 100644
--- a/git-codereview/submit.go
+++ b/git-codereview/submit.go
@@ -166,7 +166,7 @@ func submitCheck(g *GerritChange) error {
// Not yet "MERGED", so try the submit.
// "SUBMITTED" is a weird state. It means that Submit has been clicked once,
// but it hasn't happened yet, usually because of a merge failure.
- // The user may have done git codereview sync and may now have a mergable
+ // The user may have done git codereview sync and may now have a mergeable
// copy waiting to be uploaded, so continue on as if it were "NEW".
case "MERGED":