aboutsummaryrefslogtreecommitdiff
path: root/db.go
diff options
context:
space:
mode:
Diffstat (limited to 'db.go')
-rw-r--r--db.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/db.go b/db.go
index 5488334..c768ce3 100644
--- a/db.go
+++ b/db.go
@@ -63,9 +63,9 @@ type DB struct {
// debugging purposes.
StrictMode bool
- // Sets the threshold for filling pages when they split. By default,
+ // Sets the threshold for filling nodes when they split. By default,
// the database will fill to 50% but it can be useful to increase this
- // amount if you know that your write workloads are typically append-only.
+ // amount if you know that your write workloads are mostly append-only.
FillPercent float64
path string