diff --git a/src/app/page.js b/src/app/page.js index a8728fc..5c9260f 100644 --- a/src/app/page.js +++ b/src/app/page.js @@ -4,7 +4,7 @@ import Calculator from '@/components/calculator/Calculator' export default function Home() { return (
-

Welcome to the Calcuator

+

Welcome to the Calculator

) diff --git a/src/components/calculator/functions.js b/src/components/calculator/functions.js index 1191c88..a5988a1 100644 --- a/src/components/calculator/functions.js +++ b/src/components/calculator/functions.js @@ -1,7 +1,7 @@ // src/functions.js export function add(a, b) { - return a + b + 1; + return a + b + 2; } export function subtract(a, b) {