diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-11-07 21:22:45 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-11-07 21:22:45 +0100 |
commit | e523701393598f4fa241dd407af9ff8925507a1a (patch) | |
tree | 508b1cf002a0ae3f3ccb7c50551ed5795e9c63ef | |
parent | 7b0f65f5f5486f5e32f749826744929813734e24 (diff) | |
download | go-git-e523701393598f4fa241dd407af9ff8925507a1a.tar.gz |
config: storer comment
-rw-r--r-- | config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go index b7482ea..ea8ae07 100644 --- a/config/config.go +++ b/config/config.go @@ -11,7 +11,7 @@ const ( DefaultRefSpec = "+refs/heads/*:refs/remotes/%s/*" ) -// ConfigStorer interface to persist Config objects +// ConfigStorer generic storage of Config object type ConfigStorer interface { Config() (*Config, error) SetConfig(*Config) error |