From b992967e509e051067474dd863854f6a805f4529 Mon Sep 17 00:00:00 2001 From: Jake Date: Fri, 24 Apr 2026 20:16:31 +0100 Subject: [PATCH] style(gamification): drop em-dash from cascade comment Matches the project's style preference for full stops over em/en dashes. No functional change. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/storage/src/database.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/storage/src/database.rs b/crates/storage/src/database.rs index eff5f14..ce1f9e6 100644 --- a/crates/storage/src/database.rs +++ b/crates/storage/src/database.rs @@ -452,7 +452,7 @@ pub async fn complete_subtask_and_check_parent(pool: &SqlitePool, subtask_id: &s if pending == 0 { // Phase 8: flag the cascade so the daily-count query can exclude - // it. The subtask UPDATE (above) stays at auto_completed = 0 — the + // it. The subtask UPDATE (above) stays at auto_completed = 0. The // user explicitly ticked it, so it counts. sqlx::query( "UPDATE tasks SET done = 1, done_at = datetime('now'), auto_completed = 1 \