summaryrefslogtreecommitdiff
path: root/blob.go
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-09-03 20:12:52 +0200
committerGitHub <[email protected]>2017-09-03 20:12:52 +0200
commita2e6f1db859c3f5856e165b9f0f69af749f08d4f (patch)
tree038cb651adc52a9d28234cb77943fa32a05a14d4 /blob.go
parent7718e373f648e3b4c8ae6d0c2000ff2a980d9f2e (diff)
parent24637b369fd36152bc70925bc93c0c91fbe94c01 (diff)
Merge pull request #398 from reujab/master
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.