summaryrefslogtreecommitdiff
path: root/blob.go
diff options
context:
space:
mode:
authorlhchavez <[email protected]>2020-02-23 13:53:17 +0000
committerlhchavez <[email protected]>2020-02-23 13:53:17 +0000
commitc20008416a64e2ae884a14332b258160a261a5df (patch)
tree58ae95d9f007937876eed1aac89b0518a034e442 /blob.go
parent79fe156d307a9c7b294aa92c741dc0c2759a1894 (diff)
parent4bca045e5aa98b0b791fb467705de0692fe3514f (diff)
Merge remote-tracking branch 'upstream/master' into git_index_add_frombuffer
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.