remove em dashes

This commit is contained in:
2026-04-09 21:07:28 +04:00
parent 5f20b41e91
commit 79ba63d86b
31 changed files with 154 additions and 154 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
// Tiny in-memory TTL cache keyed by string. Status pages serve the same payload
// to many visitors during an outage; we don't want every page hit to fan out to
// Postgres. The cache is per-process; behind a load balancer each replica fills
// independently, which is fine short TTLs converge quickly.
// independently, which is fine - short TTLs converge quickly.
interface Entry<T> { value: T; expires: number }