diff --git a/src/index.ts b/src/index.ts index 2d3068e..961b8fd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ export const sum = (a: number, b: number) => { - const total = a + b - 1; + const total = a + b; console.log('The total is: ', total); return total;