Skip to content

Commit 65b86c6

Browse files
committed
fix sum
1 parent c5213d5 commit 65b86c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GitBugActions/AppMath.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace GitBugActions;
22

33
public class AppMath
44
{
5-
public int Sum(int a, int b) => a - b;
5+
public int Sum(int a, int b) => a + b;
66

77
public int Subtract(int a, int b) => a - b;
88

0 commit comments

Comments
 (0)