diff options
author | Jon Eskin <eskinjp@gmail.com> | 2022-08-10 04:10:58 -0400 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2022-09-22 10:08:02 +0200 |
commit | af1efaa7dfb2a33de9c15597dd2cc65ea626cf35 (patch) | |
tree | 285e2c2899441bd162028bee9ac7ad31cec2d17d /plumbing/memory.go | |
parent | bc1f419cebcf7505db31149fa459e9e3f8260e00 (diff) | |
download | go-git-af1efaa7dfb2a33de9c15597dd2cc65ea626cf35.tar.gz |
minor grammatical fixes
Diffstat (limited to 'plumbing/memory.go')
-rw-r--r-- | plumbing/memory.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plumbing/memory.go b/plumbing/memory.go index 21337cc..6d11271 100644 --- a/plumbing/memory.go +++ b/plumbing/memory.go @@ -25,13 +25,13 @@ func (o *MemoryObject) Hash() Hash { return o.h } -// Type return the ObjectType +// Type returns the ObjectType func (o *MemoryObject) Type() ObjectType { return o.t } // SetType sets the ObjectType func (o *MemoryObject) SetType(t ObjectType) { o.t = t } -// Size return the size of the object +// Size returns the size of the object func (o *MemoryObject) Size() int64 { return o.sz } // SetSize set the object size, a content of the given size should be written |