From 08f9e7015aad2ca768638b446fb8632f11601899 Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Thu, 19 May 2016 13:28:17 +0200 Subject: fix misspellings --- objects.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'objects.go') diff --git a/objects.go b/objects.go index b84909c..4d053a0 100644 --- a/objects.go +++ b/objects.go @@ -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 } -- cgit