From f6beb9cfa007f8b21959f61bb0b96a2760f7a904 Mon Sep 17 00:00:00 2001 From: "@beer" <47961062+iiio2@users.noreply.github.com> Date: Sun, 11 May 2025 13:13:51 +0600 Subject: [PATCH] chore: tiny typo (#7958) --- examples/profiling/src/prime-number.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/profiling/src/prime-number.ts b/examples/profiling/src/prime-number.ts index 345f6c56d..ae4487f35 100644 --- a/examples/profiling/src/prime-number.ts +++ b/examples/profiling/src/prime-number.ts @@ -47,7 +47,7 @@ function isPrimeNumber(number: bigint): boolean { const squareRoot = bigIntSquareRoot(number) - // Intentionally unefficient to highlight performance issues + // Intentionally inefficient to highlight performance issues for (let i = 3n; i < squareRoot; i += 2n) { if (number % i === 0n) { return false -- 2.51.2