Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/git/localrepo/commit.go')
-rw-r--r--internal/git/localrepo/commit.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/git/localrepo/commit.go b/internal/git/localrepo/commit.go
index 2f77069ef..bdb7bb990 100644
--- a/internal/git/localrepo/commit.go
+++ b/internal/git/localrepo/commit.go
@@ -21,13 +21,13 @@ import (
)
var (
- // ErrMissingTree indicates a missing tree when attemping to write a commit
+ // ErrMissingTree indicates a missing tree when attempting to write a commit
ErrMissingTree = errors.New("missing tree")
// ErrMissingCommitterName indicates an attempt to write a commit without a
- // comitter name
+ // committer name
ErrMissingCommitterName = errors.New("missing committer name")
// ErrMissingAuthorName indicates an attempt to write a commit without a
- // comitter name
+ // committer name
ErrMissingAuthorName = errors.New("missing author name")
// ErrDisallowedCharacters indicates the name and/or email contains disallowed
// characters