From cd2e9ac5c8b682daf3aa39571382dab08ef0debe Mon Sep 17 00:00:00 2001 From: "Charles P. Cross" Date: Wed, 24 Dec 2025 12:18:20 -0500 Subject: [PATCH] refactor(daemon): simplify JSONL path comment Remove verbose parenthetical explanation from comment on line 73. The comment now reads '// Get the actual JSONL path' instead of '// Get the actual JSONL path (could be issues.jsonl, beads.base.jsonl, etc.)' This is a documentation cleanup with no functional changes. --- cmd/bd/daemon_sync_branch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bd/daemon_sync_branch.go b/cmd/bd/daemon_sync_branch.go index a8ef7fb0..a414785f 100644 --- a/cmd/bd/daemon_sync_branch.go +++ b/cmd/bd/daemon_sync_branch.go @@ -70,7 +70,7 @@ func syncBranchCommitAndPushWithOptions(ctx context.Context, store storage.Stora } // Sync JSONL file to worktree - // Get the actual JSONL path (could be issues.jsonl, beads.base.jsonl, etc.) + // Get the actual JSONL path jsonlPath := findJSONLPath() if jsonlPath == "" { return false, fmt.Errorf("JSONL path not found")