From be7e1e6443633728559577363e83fabd56e65a36 Mon Sep 17 00:00:00 2001 From: Antonio Jesus Navarro Perez Date: Thu, 2 Mar 2017 10:48:26 +0100 Subject: Add full stops and keep implementation details as internal comments. --- remote.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'remote.go') diff --git a/remote.go b/remote.go index 4f034bb..580e6b0 100644 --- a/remote.go +++ b/remote.go @@ -22,7 +22,7 @@ import ( var NoErrAlreadyUpToDate = errors.New("already up-to-date") -// Remote represents a connection to a remote repository +// Remote represents a connection to a remote repository. type Remote struct { c *config.RemoteConfig s storage.Storer @@ -32,7 +32,7 @@ func newRemote(s storage.Storer, c *config.RemoteConfig) *Remote { return &Remote{s: s, c: c} } -// Config returns the RemoteConfig object used to instantiate this Remote +// Config returns the RemoteConfig object used to instantiate this Remote. func (r *Remote) Config() *config.RemoteConfig { return r.c } -- cgit