diff options
Diffstat (limited to 'plumbing/transport')
-rw-r--r-- | plumbing/transport/common.go | 4 | ||||
-rw-r--r-- | plumbing/transport/internal/common/common.go | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plumbing/transport/common.go b/plumbing/transport/common.go index 2379422..73b7d27 100644 --- a/plumbing/transport/common.go +++ b/plumbing/transport/common.go @@ -3,9 +3,9 @@ // // `Client` can be used to fetch and send packfiles to a git server. // The `client` package provides higher level functions to instantiate the -// appropiate `Client` based on the repository URL. +// appropriate `Client` based on the repository URL. // -// Go-git supports HTTP and SSH (see `Protocols`), but you can also install +// go-git supports HTTP and SSH (see `Protocols`), but you can also install // your own protocols (see the `client` package). // // Each protocol has its own implementation of `Client`, but you should diff --git a/plumbing/transport/internal/common/common.go b/plumbing/transport/internal/common/common.go index f6aa204..11c86ef 100644 --- a/plumbing/transport/internal/common/common.go +++ b/plumbing/transport/internal/common/common.go @@ -277,7 +277,6 @@ func (s *session) checkNotFoundError() error { return fmt.Errorf("unknown error: %s", line) } - return nil } var ( |