Skip to content

Commit

Permalink
Merge pull request etcd-io#28 from gyuho/goreport
Browse files Browse the repository at this point in the history
goreport + minor fixes
  • Loading branch information
gyuho committed Aug 11, 2017
2 parents dd1d5a7 + c309230 commit e1c9208
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Bolt
====

[![Godoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](https://godoc.org/github.com/coreos/bbolt)
[![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)

Bolt is a pure Go key/value store inspired by [Howard Chu's][hyc_symas]
[LMDB project][lmdb]. The goal of the project is to provide a simple,
Expand Down
1 change: 1 addition & 0 deletions bucket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ func TestBucket_Get_Capacity(t *testing.T) {
// Ensure slice can be appended to without a segfault.
k = append(k, []byte("123")...)
v = append(v, []byte("123")...)
_, _ = k, v // to pass ineffassign

return nil
}); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/bolt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ The commands are:
buckets print a list of buckets
check verifies integrity of bolt database
compact copies a bolt database, compacting it in the process
dump print a hexidecimal dump of a single page
dump print a hexadecimal dump of a single page
get print the value of a key in a bucket
info print basic info
keys print a list of keys in a bucket
Expand Down

0 comments on commit e1c9208

Please sign in to comment.