diff options
author | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-02-28 15:09:15 +0100 |
---|---|---|
committer | Antonio Jesus Navarro Perez <antonio@sourced.tech> | 2017-03-03 16:16:29 +0100 |
commit | 900691567e51bf95bb92d36951e2b7b79d2596cc (patch) | |
tree | 3ec9bb0f50545745919ce9744095170b22aa8366 /remote.go | |
parent | d105e15d91e7553d9d40d6e9fffe0a5008cf8afe (diff) | |
download | go-git-900691567e51bf95bb92d36951e2b7b79d2596cc.tar.gz |
improve git package documentation (fix #231)
Diffstat (limited to 'remote.go')
-rw-r--r-- | remote.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ func newRemote(s storage.Storer, c *config.RemoteConfig) *Remote { return &Remote{s: s, c: c} } -// Config return the config +// Config returns the RemoteConfig object used to instantiate this Remote func (r *Remote) Config() *config.RemoteConfig { return r.c } |