From 90c1bbd07862c6e1c3ce80306d69eee8ed277056 Mon Sep 17 00:00:00 2001 From: Sergio Arbeo Date: Mon, 30 Jan 2017 19:04:46 +0100 Subject: Fix some typos in plumbing docs (#244) --- plumbing/format/config/option.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plumbing/format/config/option.go') 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) } -- cgit