diff options
author | Paulo Gomes <pjbgf@linux.com> | 2024-03-12 08:01:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 08:01:13 +0000 |
commit | 6af38e000608a795320cd17c99491853f0b8ad3a (patch) | |
tree | 109121ed45eb2cd52b536017ea52fa414212b84e /plumbing | |
parent | e6c3e58198d176c497bb2dba1a2adb9302597676 (diff) | |
parent | 04f7b23cbb85040a276ab2b7d6879223779451fd (diff) | |
download | go-git-6af38e000608a795320cd17c99491853f0b8ad3a.tar.gz |
Merge pull request #1047 from avoidalone/master
chore: fix some comments
Diffstat (limited to 'plumbing')
-rw-r--r-- | plumbing/format/gitignore/dir.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plumbing/format/gitignore/dir.go b/plumbing/format/gitignore/dir.go index d8fb30c..aca5d0d 100644 --- a/plumbing/format/gitignore/dir.go +++ b/plumbing/format/gitignore/dir.go @@ -116,7 +116,7 @@ func loadPatterns(fs billy.Filesystem, path string) (ps []Pattern, err error) { return } -// LoadGlobalPatterns loads gitignore patterns from from the gitignore file +// LoadGlobalPatterns loads gitignore patterns from the gitignore file // declared in a user's ~/.gitconfig file. If the ~/.gitconfig file does not // exist the function will return nil. If the core.excludesfile property // is not declared, the function will return nil. If the file pointed to by @@ -132,7 +132,7 @@ func LoadGlobalPatterns(fs billy.Filesystem) (ps []Pattern, err error) { return loadPatterns(fs, fs.Join(home, gitconfigFile)) } -// LoadSystemPatterns loads gitignore patterns from from the gitignore file +// LoadSystemPatterns loads gitignore patterns from the gitignore file // declared in a system's /etc/gitconfig file. If the /etc/gitconfig file does // not exist the function will return nil. If the core.excludesfile property // is not declared, the function will return nil. If the file pointed to by |