From 2f23e8ef0d422b40442c5e980b86869e5390b90c Mon Sep 17 00:00:00 2001 From: Virgil Date: Sat, 4 Apr 2026 11:37:06 +0000 Subject: [PATCH] chore(store): clarify AX config guidance Co-Authored-By: Virgil --- doc.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc.go b/doc.go index 7a03255..b327c14 100644 --- a/doc.go +++ b/doc.go @@ -6,8 +6,9 @@ // `RecoverOrphans(".core/state")`. // // Use `store.NewConfigured(store.StoreConfig{...})` when the database path, -// journal, and purge interval are already known. -// Keep `store.New(..., store.WithJournal(...))` for incremental assembly. +// journal, and purge interval are already known. Prefer the struct literal +// over `store.New(..., store.WithJournal(...))` when the full configuration is +// already available, because it reads as data rather than a chain of steps. // // Usage example: //