From 08dd45acfc605668c01df8a8e9415bbf444c9a03 Mon Sep 17 00:00:00 2001 From: Vladimir Masarik Date: Thu, 4 Jul 2019 14:01:31 +0200 Subject: config: added missing dot. Signed-off-by: Vladimir Masarik --- config/refspec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/refspec.go b/config/refspec.go index 7f486c9..d32a2e4 100644 --- a/config/refspec.go +++ b/config/refspec.go @@ -18,7 +18,7 @@ var ( ErrRefSpecMalformedWildcard = errors.New("malformed refspec, mismatched number of wildcards") ) -// RefSpec is a mapping from local branches to remote references +// RefSpec is a mapping from local branches to remote references. // The format of the refspec is an optional +, followed by :, where // is the pattern for references on the remote side and is where // those references will be written locally. The + tells Git to update the -- cgit