From ad9456267524e08efcf4486cadfb6cef8d182677 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Thu, 1 Sep 2016 01:31:58 +0200 Subject: doc packages --- clients/common.go | 10 ++++++---- clients/common/common.go | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'clients') diff --git a/clients/common.go b/clients/common.go index 1eeacf0..c28c465 100644 --- a/clients/common.go +++ b/clients/common.go @@ -1,10 +1,12 @@ -// Go-git needs the packfile and the refs of the repo. The +// Package clients includes the implementation for diferent transport protocols +// +// go-git needs the packfile and the refs of the repo. The // `NewGitUploadPackService` function returns an object that allows to // download them. // -// Go-git supports HTTP and SSH (see `KnownProtocols`) for downloading -// the packfile and the refs, but you can also install your own -// protocols (see `InstallProtocol` below). +// go-git supports HTTP and SSH (see `Protocols`) for downloading the packfile +// and the refs, but you can also install your own protocols (see +// `InstallProtocol` below). // // Each protocol has its own implementation of // `NewGitUploadPackService`, but you should generally not use them diff --git a/clients/common/common.go b/clients/common/common.go index b5e6152..1518081 100644 --- a/clients/common/common.go +++ b/clients/common/common.go @@ -1,4 +1,4 @@ -// Package common contains utils used by the clients +// Package common contains interfaces and non-specific protocol entities package common import ( -- cgit