From db5a68bc694b64f2cdc73ddb9e6bf2b90fdfd9e6 Mon Sep 17 00:00:00 2001 From: bymyself Date: Tue, 9 Sep 2025 16:41:46 -0700 Subject: [PATCH] remove typo comment --- src/utils/mathUtil.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/mathUtil.ts b/src/utils/mathUtil.ts index 953901dbf..8655451c5 100644 --- a/src/utils/mathUtil.ts +++ b/src/utils/mathUtil.ts @@ -13,7 +13,7 @@ export const gcd = (a: number, b: number): number => { } /** - * Finds the export least common multiple (LCM) for two numbers. + * Finds the least common multiple (LCM) for two numbers. * * @param a - The first number. * @param b - The second number.