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:
authorflowed <yoginth@protonmail.com>2019-12-21 18:36:17 +0300
committerflowed <yoginth@protonmail.com>2019-12-21 18:36:17 +0300
commit1a4c9b0745a4ecfa517a3e8335edd837d49d0d5a (patch)
treef0f1614622b178ff62d970b5daf0b388907ebad4 /internal/git
parent48e227f01112f9108d184a55913389d9f2d52c6f (diff)
Fix Typos
Diffstat (limited to 'internal/git')
-rw-r--r--internal/git/proto.go2
-rw-r--r--internal/git/safecmd.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/git/proto.go b/internal/git/proto.go
index dce5408f8..d8d6a5f96 100644
--- a/internal/git/proto.go
+++ b/internal/git/proto.go
@@ -158,7 +158,7 @@ func SupportsDeltaIslands(versionStr string) (bool, error) {
// NoMissingWantErrMessage checks if the git version is before Git 2.22,
// in which versions the missing objects in the wants didn't yield an explicit
-// error message, but no ouput at all.
+// error message, but no output at all.
func NoMissingWantErrMessage() bool {
ver, err := Version()
if err != nil {
diff --git a/internal/git/safecmd.go b/internal/git/safecmd.go
index da1fa6197..bb98cf7c9 100644
--- a/internal/git/safecmd.go
+++ b/internal/git/safecmd.go
@@ -227,7 +227,7 @@ func SafeStdinCmd(ctx context.Context, repo repository.GitRepo, globals []Option
}
// SafeCmdWithoutRepo works like Command but without a git repository. It
-// validates the arugments in the command before executing.
+// validates the arguments in the command before executing.
func SafeCmdWithoutRepo(ctx context.Context, globals []Option, sc SubCmd) (*command.Command, error) {
args, err := combineArgs(globals, sc)
if err != nil {