aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2018-01-08 14:05:52 +0100
committerGitHub <noreply@github.com>2018-01-08 14:05:52 +0100
commitbf3b1f1fb9e0a04d0f87511a7ded2562b48a19d8 (patch)
treebdbb4c042f06abb12997435e27052b82a27fe057
parentc0fd10cb648e1230c11e35c3b92253f401630d2f (diff)
parent163a67524bc3a5ec9ade10d6e2c7f4954148d0bc (diff)
downloadgo-git-bf3b1f1fb9e0a04d0f87511a7ded2562b48a19d8.tar.gz
Merge pull request #710 from wellsjo/patch-1v4.0.0
fix typo
-rw-r--r--plumbing/format/gitignore/pattern.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/format/gitignore/pattern.go b/plumbing/format/gitignore/pattern.go
index bd0825b..2603352 100644
--- a/plumbing/format/gitignore/pattern.go
+++ b/plumbing/format/gitignore/pattern.go
@@ -13,7 +13,7 @@ const (
NoMatch MatchResult = iota
// Exclude defines an exclusion of a file as a result of a match check
Exclude
- // Exclude defines an explicit inclusion of a file as a result of a match check
+ // Include defines an explicit inclusion of a file as a result of a match check
Include
)