aboutsummaryrefslogtreecommitdiffstats
path: root/remote.go
diff options
context:
space:
mode:
authorAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-02-28 15:09:15 +0100
committerAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-03-03 16:16:29 +0100
commit900691567e51bf95bb92d36951e2b7b79d2596cc (patch)
tree3ec9bb0f50545745919ce9744095170b22aa8366 /remote.go
parentd105e15d91e7553d9d40d6e9fffe0a5008cf8afe (diff)
downloadgo-git-900691567e51bf95bb92d36951e2b7b79d2596cc.tar.gz
improve git package documentation (fix #231)
Diffstat (limited to 'remote.go')
-rw-r--r--remote.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.go b/remote.go
index fe7993c..4f034bb 100644
--- a/remote.go
+++ b/remote.go
@@ -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
}