diff options
Diffstat (limited to 'clients')
-rw-r--r-- | clients/ssh/git_upload_pack.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clients/ssh/git_upload_pack.go b/clients/ssh/git_upload_pack.go index 0d824cd..3c67b2b 100644 --- a/clients/ssh/git_upload_pack.go +++ b/clients/ssh/git_upload_pack.go @@ -172,9 +172,9 @@ func (s *GitUploadPackService) Fetch(r *common.GitUploadPackRequest) (rc io.Read if err != nil { return nil, err } - // TODO: inestigate this *ExitError type (command fails or + // TODO: investigate this *ExitError type (command fails or // doesn't complete successfully), as it is happenning all - // the time, but everyting seems to work fine. + // the time, but everything seems to work fine. err = session.Wait() if err != nil { if _, ok := err.(*ssh.ExitError); !ok { |