Whitespace and indentation

This commit is contained in:
Myles Byrne 2017-11-28 11:44:29 -08:00
parent ddd47a11c9
commit 210a7b9c1f
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ All keys/value pairs are ordered in the database by the key. To iterate over the
```go
err := db.View(func(tx *buntdb.Tx) error {
err := tx.Ascend("", func(key, value string) bool{
err := tx.Ascend("", func(key, value string) bool {
fmt.Printf("key: %s, value: %s\n", key, value)
})
return err