From 77a08ff0c4b49af3d87be7ebf85ec45955acc2df Mon Sep 17 00:00:00 2001 From: Erik Kalkoken Date: Sun, 25 Aug 2024 19:08:26 +0200 Subject: [PATCH] Clarify info about iterating over existing buckets Co-authored-by: Benjamin Wang Signed-off-by: ErikKalkoken --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04cfe7254..86b6d7d39 100644 --- a/README.md +++ b/README.md @@ -315,7 +315,7 @@ guarantee that they exist for future transactions. To delete a bucket, simply call the `Tx.DeleteBucket()` function. -You can also iterate over all existing buckets with `Tx.forEach()`: +You can also iterate over all existing top-level buckets with `Tx.forEach()`: ```go db.View(func(tx *bolt.Tx) error {