aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest_arena.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_arena.cpp b/test_arena.cpp
index 545e4ba..fbc0b36 100755
--- a/test_arena.cpp
+++ b/test_arena.cpp
@@ -4,7 +4,7 @@ DECL_MAIN {
// Reserving 16GiB.
auto a = Arena(16ULL * 1024ULL * 1024ULL * 1024ULL);
- // Committing 1MiB to make space for 4 bytes (with some headroom).
+ // Committing a full page to make space for 4 bytes (with some headroom).
bool committed = a.Grow(4);
assert(committed);