From a057a15914156377e54f38cb443c6f292bf6f2c4 Mon Sep 17 00:00:00 2001 From: Nikita Barsukov Date: Thu, 12 Dec 2024 16:54:15 +0300 Subject: [PATCH] chore: fix again --- projects/cdk/utils/math/round.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/cdk/utils/math/round.ts b/projects/cdk/utils/math/round.ts index de565c7b0021..891400bcbd2e 100644 --- a/projects/cdk/utils/math/round.ts +++ b/projects/cdk/utils/math/round.ts @@ -32,7 +32,7 @@ function calculate( ngDevMode && console.assert( Number.isSafeInteger(roundedInt), - 'Impossible to correctly round a such large number', + 'Impossible to correctly round such a large number', ); const processedPair = `${roundedInt}e`.split('e');