diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-05-19 13:28:17 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-05-19 13:28:17 +0200 |
commit | 08f9e7015aad2ca768638b446fb8632f11601899 (patch) | |
tree | 15ab43bb09c7381877e6077060807f82308f9b2a /objects.go | |
parent | ec1a57f40f78ed5209cdcc7efbadc8d004716b2d (diff) | |
download | go-git-08f9e7015aad2ca768638b446fb8632f11601899.tar.gz |
fix misspellingsv3.0.4
Diffstat (limited to 'objects.go')
-rw-r--r-- | objects.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,14 +51,14 @@ type Blob struct { // ID returns the object ID of the blob. The returned value will always match // the current value of Blob.Hash. // -// ID is present to fufill the Object interface. +// ID is present to fulfill the Object interface. func (b *Blob) ID() core.Hash { return b.Hash } // Type returns the type of object. It always returns core.BlobObject. // -// Type is present to fufill the Object interface. +// Type is present to fulfill the Object interface. func (b *Blob) Type() core.ObjectType { return core.BlobObject } |