Merge pull request #242 from clutchski/patch-1

fix spelling mistake in README
pull/34/head
Ben Johnson 2014-08-20 15:17:14 -06:00
commit 28e80eedb5
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ db.Update(func(tx *bolt.Tx) error {
You can also create a bucket only if it doesn't exist by using the
`Tx.CreateBucketIfNotExists()` function. It's a common pattern to call this
function for all your top-level buckets after you open your database so you can
guarentee that they exist for future transactions.
guarantee that they exist for future transactions.
To delete a bucket, simply call the `Tx.DeleteBucket()` function.