diff --git a/src/main/kotlin/ru/dbotthepony/kommons/io/BTreeDB6.kt b/src/main/kotlin/ru/dbotthepony/kommons/io/BTreeDB6.kt
index c56e86a..fe900a6 100644
--- a/src/main/kotlin/ru/dbotthepony/kommons/io/BTreeDB6.kt
+++ b/src/main/kotlin/ru/dbotthepony/kommons/io/BTreeDB6.kt
@@ -29,8 +29,8 @@ private fun readHeader(reader: RandomAccessFile, required: Char) {
 /**
  * General purpose binary object storage, employing copy-on-write updates.
  *
- * This database is designed to read/write *small* files, since any read/write operation
- * must be able to fully store the file in question in memory.
+ * This database is designed to read/write small blobs, since any read/write operation
+ * must be able to fully store the blob in question in memory.
  *
  * Smallest unit of work is defined as block. Default block size is 4096 bytes (which includes block header and pointer to next block).
  * See [create] for more details.