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.
This commit is contained in:
Charles P. Cross
2025-12-24 12:18:20 -05:00
committed by Steve Yegge
parent 61daa59fd0
commit cd2e9ac5c8

View File

@@ -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")