From f99abb9fa97d46cc5ee6a5310b7e96b5690aa091 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Thu, 15 Feb 2024 13:58:50 +0700 Subject: [PATCH] Clarify btreedb docs --- src/main/kotlin/ru/dbotthepony/kommons/io/BTreeDB6.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.