diff options
author | Wells Johnston <wellsjo@users.noreply.github.com> | 2018-01-08 00:38:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-08 00:38:30 -0500 |
commit | 163a67524bc3a5ec9ade10d6e2c7f4954148d0bc (patch) | |
tree | bdbb4c042f06abb12997435e27052b82a27fe057 | |
parent | c0fd10cb648e1230c11e35c3b92253f401630d2f (diff) | |
download | go-git-163a67524bc3a5ec9ade10d6e2c7f4954148d0bc.tar.gz |
fix typo
-rw-r--r-- | plumbing/format/gitignore/pattern.go | 2 |
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 ) |