From b719274c83331703bb03c571a436f0a1661c198e Mon Sep 17 00:00:00 2001 From: "codefix-patchflow[bot]" <292349666+codefix-patchflow[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 10:28:54 +0000 Subject: [PATCH] fix: applied the smallest safe implementation fix in the active source directory --- src/sum.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sum.js b/src/sum.js index db130c7..506a413 100644 --- a/src/sum.js +++ b/src/sum.js @@ -1,3 +1,3 @@ export function sum(a, b) { - return a - b; + return a + b; }