diff options
author | Sergio Arbeo <serabe@gmail.com> | 2017-01-30 19:04:46 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-01-30 19:04:46 +0100 |
commit | 90c1bbd07862c6e1c3ce80306d69eee8ed277056 (patch) | |
tree | 5d24a7a015803fd2776b968b777ce5e017be9973 /plumbing/format/config | |
parent | a24e40af0aa2d9d512051269993a1b08c0496d12 (diff) | |
download | go-git-90c1bbd07862c6e1c3ce80306d69eee8ed277056.tar.gz |
Fix some typos in plumbing docs (#244)
Diffstat (limited to 'plumbing/format/config')
-rw-r--r-- | plumbing/format/config/common.go | 2 | ||||
-rw-r--r-- | plumbing/format/config/option.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plumbing/format/config/common.go b/plumbing/format/config/common.go index d2f1e5c..cc1e81a 100644 --- a/plumbing/format/config/common.go +++ b/plumbing/format/config/common.go @@ -13,7 +13,7 @@ type Config struct { type Includes []*Include -// A reference to a included configuration. +// A reference to an included configuration. type Include struct { Path string Config *Config diff --git a/plumbing/format/config/option.go b/plumbing/format/config/option.go index dbb401c..cae83e5 100644 --- a/plumbing/format/config/option.go +++ b/plumbing/format/config/option.go @@ -8,14 +8,14 @@ type Option struct { // Key preserving original caseness. // Use IsKey instead to compare key regardless of caseness. Key string - // Original value as string, could be not notmalized. + // Original value as string, could be not normalized. Value string } type Options []*Option // IsKey returns true if the given key matches -// this options' key in a case-insensitive comparison. +// this option's key in a case-insensitive comparison. func (o *Option) IsKey(key string) bool { return strings.ToLower(o.Key) == strings.ToLower(key) } |