Fix typo in the error message

This commit is contained in:
Harsimran Singh Maan 2017-10-01 21:04:08 -07:00 committed by GitHub
parent b011f6b248
commit 3452fe984d
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const (
var RebaseNoOperation uint = ^uint(0) var RebaseNoOperation uint = ^uint(0)
// Error returned if there is no current rebase operation // 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. // RebaseOperation describes a single instruction/operation to be performed during the rebase.
type RebaseOperation struct { type RebaseOperation struct {