aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWells Johnston <wellsjo@users.noreply.github.com>2018-01-08 00:38:30 -0500
committerGitHub <noreply@github.com>2018-01-08 00:38:30 -0500
commit163a67524bc3a5ec9ade10d6e2c7f4954148d0bc (patch)
treebdbb4c042f06abb12997435e27052b82a27fe057
parentc0fd10cb648e1230c11e35c3b92253f401630d2f (diff)
downloadgo-git-163a67524bc3a5ec9ade10d6e2c7f4954148d0bc.tar.gz
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
)