diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-05-19 13:28:17 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-05-19 13:28:17 +0200 |
commit | 08f9e7015aad2ca768638b446fb8632f11601899 (patch) | |
tree | 15ab43bb09c7381877e6077060807f82308f9b2a /clients | |
parent | ec1a57f40f78ed5209cdcc7efbadc8d004716b2d (diff) | |
download | go-git-08f9e7015aad2ca768638b446fb8632f11601899.tar.gz |
fix misspellingsv3.0.4
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 { |