From f74816f99bdf6d0017fce7e0ad4aca46320865c1 Mon Sep 17 00:00:00 2001 From: Matt Perpick Date: Wed, 20 Aug 2014 14:18:11 -0400 Subject: [PATCH] fix spelling mistake in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49f3829..bf72581 100644 --- a/README.md +++ b/README.md @@ -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.