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; };