summaryrefslogtreecommitdiff
path: root/blob.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2015-08-31 20:12:45 +0200
committerCarlos Martín Nieto <[email protected]>2015-08-31 20:12:45 +0200
commitd59752528c627fd511e2969b9daa672d4d8adc7d (patch)
tree48a919fa85a76a69e3a19768edb7ac12d1d03d09 /blob.go
parentc6c2e9389fd2148d20f2e283000f5b4204dbcdc8 (diff)
parentb7159b0cd4b25ee3b1a8eb9e0d4991d297487a36 (diff)
Merge pull request #237 from libgit2/object-type
Move from an Object interface to a type
Diffstat (limited to 'blob.go')
-rw-r--r--blob.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/blob.go b/blob.go
index b1fc78a..16ec183 100644
--- a/blob.go
+++ b/blob.go
@@ -18,7 +18,7 @@ import (
)
type Blob struct {
- gitObject
+ Object
cast_ptr *C.git_blob
}