diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-11-20 11:16:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-20 11:16:47 +0100 |
commit | 5cf1147e1b891aee85fdd66d24cb5e8cf86531ce (patch) | |
tree | a0a4550273fd15ecb04ad6b548f13c8e3cfce2d7 /plumbing/storer | |
parent | 6abcb9798743579819719eb7328f2a7bdc8a882e (diff) | |
parent | d9b8691c6b137bb59ee185f69acf868a8f42b77d (diff) | |
download | go-git-5cf1147e1b891aee85fdd66d24cb5e8cf86531ce.tar.gz |
Merge pull request #647 from ferhatelmas/typo-fixes
examples,plumbing,utils: typo fixes
Diffstat (limited to 'plumbing/storer')
-rw-r--r-- | plumbing/storer/object.go | 6 | ||||
-rw-r--r-- | plumbing/storer/reference.go | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plumbing/storer/object.go b/plumbing/storer/object.go index 3f41468..e793211 100644 --- a/plumbing/storer/object.go +++ b/plumbing/storer/object.go @@ -123,7 +123,7 @@ func (iter *EncodedObjectLookupIter) Next() (plumbing.EncodedObject, error) { } // ForEach call the cb function for each object contained on this iter until -// an error happends or the end of the iter is reached. If ErrStop is sent +// an error happens or the end of the iter is reached. If ErrStop is sent // the iteration is stop but no error is returned. The iterator is closed. func (iter *EncodedObjectLookupIter) ForEach(cb func(plumbing.EncodedObject) error) error { return ForEachIterator(iter, cb) @@ -168,7 +168,7 @@ func (iter *EncodedObjectSliceIter) Next() (plumbing.EncodedObject, error) { } // ForEach call the cb function for each object contained on this iter until -// an error happends or the end of the iter is reached. If ErrStop is sent +// an error happens or the end of the iter is reached. If ErrStop is sent // the iteration is stop but no error is returned. The iterator is closed. func (iter *EncodedObjectSliceIter) ForEach(cb func(plumbing.EncodedObject) error) error { return ForEachIterator(iter, cb) @@ -213,7 +213,7 @@ func (iter *MultiEncodedObjectIter) Next() (plumbing.EncodedObject, error) { } // ForEach call the cb function for each object contained on this iter until -// an error happends or the end of the iter is reached. If ErrStop is sent +// an error happens or the end of the iter is reached. If ErrStop is sent // the iteration is stop but no error is returned. The iterator is closed. func (iter *MultiEncodedObjectIter) ForEach(cb func(plumbing.EncodedObject) error) error { return ForEachIterator(iter, cb) diff --git a/plumbing/storer/reference.go b/plumbing/storer/reference.go index 988c784..5c21f23 100644 --- a/plumbing/storer/reference.go +++ b/plumbing/storer/reference.go @@ -121,7 +121,7 @@ func (iter *ReferenceSliceIter) Next() (*plumbing.Reference, error) { } // ForEach call the cb function for each reference contained on this iter until -// an error happends or the end of the iter is reached. If ErrStop is sent +// an error happens or the end of the iter is reached. If ErrStop is sent // the iteration is stop but no error is returned. The iterator is closed. func (iter *ReferenceSliceIter) ForEach(cb func(*plumbing.Reference) error) error { defer iter.Close() |