summaryrefslogtreecommitdiff
path: root/blob.go
diff options
context:
space:
mode:
authorreujab <[email protected]>2017-07-11 23:52:13 -0400
committerreujab <[email protected]>2017-07-11 23:52:13 -0400
commita119b21dbb1b3b2720a269ed6253b3e76764c7c8 (patch)
tree4e8df05b4f9a04c31e3d2fa4721481251ba30023 /blob.go
parent7969aefd42abf3d3d93397760e54c872493e0972 (diff)
fixed typos
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 227e014..d895449 100644
--- a/blob.go
+++ b/blob.go
@@ -48,7 +48,7 @@ func (repo *Repository) CreateBlobFromBuffer(data []byte) (*Oid, error) {
var size C.size_t
// Go 1.6 added some increased checking of passing pointer to
- // C, but its check depends on its expectations of waht we
+ // C, but its check depends on its expectations of what we
// pass to the C function, so unless we take the address of
// its contents at the call site itself, it can fail when
// 'data' is a slice of a slice.