From 9863aad7df5fb741be55fd1f8298f9c335575e8f Mon Sep 17 00:00:00 2001 From: Faraz Patankar Date: Fri, 16 Aug 2024 12:59:05 +0400 Subject: [PATCH] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 2d3068e..01e120b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export const sum = (a: number, b: number) => { const total = a + b - 1; - console.log('The total is: ', total); + console.log('The total was: ', total); return total; };