summaryrefslogtreecommitdiff
path: root/rebase.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-10-03 11:30:33 +0200
committerGitHub <[email protected]>2017-10-03 11:30:33 +0200
commitdc745f54c5690276bc3bdf83f27f751295a816ff (patch)
tree682413d1f618f5072b9a2771c9a788746e48a03a /rebase.go
parentb011f6b2485c697062425cc804f0a645429415b2 (diff)
parent3452fe984d7e6deeab050946adccea4678c0f390 (diff)
Merge pull request #411 from harsimranmaan/patch-1
Fix typo in the error message
Diffstat (limited to 'rebase.go')
-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 {