From 5a540e0f84cfb240723ae01ddb28394bf686647c Mon Sep 17 00:00:00 2001 From: Leon Wolf Date: Thu, 8 Feb 2024 20:03:36 +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 363e792..739e755 100644 --- a/src/arithmeticSubtraction.c +++ b/src/arithmeticSubtraction.c @@ -14,7 +14,7 @@ float* subtraction_float(float a, float b) { *result=a - b; return result; } -//arithmetic Subtraction specification double +//arithmetic Subtraction specification double 3 function double* subtraction_double(double a, double b) { double* result= malloc(sizeof (double)); *result=a - b;