From 860f8b3a3fa7567d02d49c95212be71f6b62ab85 Mon Sep 17 00:00:00 2001 From: Faraz Patankar Date: Fri, 16 Aug 2024 13:19:34 +0400 Subject: [PATCH] not latest --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 32ff8d2..36135f9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export const sum = (a: number, b: number) => { const total = a + b; - console.log('The latest total is: ', total); + console.log('The not latest total is: ', total); return total; };