Skip to content

Commit e1c9208

Browse files
authored
Merge pull request #28 from gyuho/goreport
goreport + minor fixes
2 parents dd1d5a7 + c309230 commit e1c9208

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Bolt
22
====
33

4-
[![Godoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://godoc.org/github.com/coreos/bbolt)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/coreos/bbolt?style=flat-square)](https://goreportcard.com/report/github.com/coreos/bbolt) [![Godoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://godoc.org/github.com/coreos/bbolt)
55

66
Bolt is a pure Go key/value store inspired by [Howard Chu's][hyc_symas]
77
[LMDB project][lmdb]. The goal of the project is to provide a simple,

bucket_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ func TestBucket_Get_Capacity(t *testing.T) {
113113
// Ensure slice can be appended to without a segfault.
114114
k = append(k, []byte("123")...)
115115
v = append(v, []byte("123")...)
116+
_, _ = k, v // to pass ineffassign
116117

117118
return nil
118119
}); err != nil {

cmd/bolt/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ The commands are:
146146
buckets print a list of buckets
147147
check verifies integrity of bolt database
148148
compact copies a bolt database, compacting it in the process
149-
dump print a hexidecimal dump of a single page
149+
dump print a hexadecimal dump of a single page
150150
get print the value of a key in a bucket
151151
info print basic info
152152
keys print a list of keys in a bucket

0 commit comments

Comments
 (0)