Simple grammar fix (#191)

pull/198/head
Steve Gore 2019-11-29 10:57:01 +11:00 committed by Xiang Li
parent 7f8bb47fca
commit 0b7b41e21b
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ func (b *Bucket) CreateBucketIfNotExists(key []byte) (*Bucket, error) {
}
// DeleteBucket deletes a bucket at the given key.
// Returns an error if the bucket does not exists, or if the key represents a non-bucket value.
// Returns an error if the bucket does not exist, or if the key represents a non-bucket value.
func (b *Bucket) DeleteBucket(key []byte) error {
if b.tx.db == nil {
return ErrTxClosed