From 3f84d3f024db78cbc71c1b8bd32c6863370fcf04 Mon Sep 17 00:00:00 2001 From: Mary Date: Thu, 30 May 2024 20:13:09 +0700 Subject: [PATCH] chore: fix typo from copy-paste --- src/lib/strings/time.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/strings/time.ts b/src/lib/strings/time.ts index a375a6a5a4..0936797c8c 100644 --- a/src/lib/strings/time.ts +++ b/src/lib/strings/time.ts @@ -55,7 +55,7 @@ export function ago(i18n: I18n, date: number | string | Date): string { return i18n._( defineMessage({ message: `${hours}h`, - comment: `How many minutes has passed, displayed in a narrow form`, + comment: `How many hours has passed, displayed in a narrow form`, }), ) } else if (diffSeconds < MONTH_30) { @@ -64,7 +64,7 @@ export function ago(i18n: I18n, date: number | string | Date): string { return i18n._( defineMessage({ message: `${days}d`, - comment: `How many minutes has passed, displayed in a narrow form`, + comment: `How many days has passed, displayed in a narrow form`, }), ) } else {