From 13db0508e09d8a810eef7921b0576946ef106cdf Mon Sep 17 00:00:00 2001 From: Virgil Date: Fri, 3 Apr 2026 09:06:29 +0000 Subject: [PATCH] docs(store): clarify workspace database comment Co-Authored-By: Virgil --- workspace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace.go b/workspace.go index 0e0d2f5..3edbf5d 100644 --- a/workspace.go +++ b/workspace.go @@ -90,7 +90,7 @@ func (workspace *Workspace) ensureReady(operation string) error { } // Usage example: `workspace, err := storeInstance.NewWorkspace("scroll-session-2026-03-30")` -// The workspace file lives at `.core/state/scroll-session-2026-03-30.duckdb` +// The workspace database file lives at `.core/state/scroll-session-2026-03-30.duckdb` // and is removed when the workspace is committed or discarded. func (storeInstance *Store) NewWorkspace(name string) (*Workspace, error) { if err := storeInstance.ensureReady("store.NewWorkspace"); err != nil {