From 508cadd33fc25ce82d5560872f576ef2cb1ab5b8 Mon Sep 17 00:00:00 2001 From: Viktor Lofgren Date: Sat, 4 Mar 2023 17:28:20 +0100 Subject: [PATCH] Readme for btree --- libraries/btree/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/btree/readme.md b/libraries/btree/readme.md index f8947ec0..f1d6cef8 100644 --- a/libraries/btree/readme.md +++ b/libraries/btree/readme.md @@ -11,7 +11,7 @@ which contains information about the data and index layout. BTreeContext ctx = new BTreeContext( 4, // num layers max 1, // entry size - 512); // block size bits + 8); // block size bits, in practice this should be 8 // Allocate a memory area to work in, see the array library for how to do this with files LongArray array = LongArray.allocate(8192);