aboutsummaryrefslogtreecommitdiffstats
path: root/commit.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-05-19 13:28:17 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-05-19 13:28:17 +0200
commit08f9e7015aad2ca768638b446fb8632f11601899 (patch)
tree15ab43bb09c7381877e6077060807f82308f9b2a /commit.go
parentec1a57f40f78ed5209cdcc7efbadc8d004716b2d (diff)
downloadgo-git-08f9e7015aad2ca768638b446fb8632f11601899.tar.gz
fix misspellingsv3.0.4
Diffstat (limited to 'commit.go')
-rw-r--r--commit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit.go b/commit.go
index 5b826ca..d9f8304 100644
--- a/commit.go
+++ b/commit.go
@@ -52,14 +52,14 @@ func (c *Commit) File(path string) (file *File, err error) {
// ID returns the object ID of the commit. The returned value will always match
// the current value of Commit.Hash.
//
-// ID is present to fufill the Object interface.
+// ID is present to fulfill the Object interface.
func (c *Commit) ID() core.Hash {
return c.Hash
}
// Type returns the type of object. It always returns core.CommitObject.
//
-// Type is present to fufill the Object interface.
+// Type is present to fulfill the Object interface.
func (c *Commit) Type() core.ObjectType {
return core.CommitObject
}