From 95eff714e2d139fcc779633326fcccbef35d9c9f Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Tue, 6 Aug 2024 23:56:32 -0500 Subject: [PATCH] Update a comment --- src/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.ts b/src/common.ts index 7d29d77b..21c2a865 100644 --- a/src/common.ts +++ b/src/common.ts @@ -1,7 +1,7 @@ import { strict as assert } from "assert"; import { M } from "./utils/debugging-and-logging.js"; -// Common constants +// Duration constants (all ms) export const MINUTE = 1000 * 60; export const HOUR = 60 * MINUTE; export const DAY = 24 * HOUR;