From 668db497d6eeeb75edd2db6830bb5ff569185a8e Mon Sep 17 00:00:00 2001 From: Leon Wolf Date: Thu, 8 Feb 2024 20:03:05 +0100 Subject: [PATCH] refactoring: description added --- src/arithmeticSubtraction.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arithmeticSubtraction.c b/src/arithmeticSubtraction.c index ed08d04..e8af674 100644 --- a/src/arithmeticSubtraction.c +++ b/src/arithmeticSubtraction.c @@ -2,7 +2,7 @@ #include "arithmeticSubtraction.h" #include -//arithmetic Subtraction specification integer +//arithmetic Subtraction specification integer 1 function int* subtraction_integer(int a, int b) { int* result= malloc(sizeof (int)); *result=a - b;