summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsimran Singh Maan <[email protected]>2017-10-01 21:04:08 -0700
committerGitHub <[email protected]>2017-10-01 21:04:08 -0700
commit3452fe984d7e6deeab050946adccea4678c0f390 (patch)
tree682413d1f618f5072b9a2771c9a788746e48a03a
parentb011f6b2485c697062425cc804f0a645429415b2 (diff)
Fix typo in the error message
-rw-r--r--rebase.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rebase.go b/rebase.go
index 1f1324d..5206fca 100644
--- a/rebase.go
+++ b/rebase.go
@@ -30,7 +30,7 @@ const (
var RebaseNoOperation uint = ^uint(0)
// Error returned if there is no current rebase operation
-var ErrRebaseNoOperation = errors.New("o current rebase operation")
+var ErrRebaseNoOperation = errors.New("no current rebase operation")
// RebaseOperation describes a single instruction/operation to be performed during the rebase.
type RebaseOperation struct {