From 15db537e0cf604bef1e2c0f6a5280e24933c7167 Mon Sep 17 00:00:00 2001 From: Leon Wolf Date: Thu, 8 Feb 2024 20:03:21 +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 e8af674..363e792 100644 --- a/src/arithmeticSubtraction.c +++ b/src/arithmeticSubtraction.c @@ -8,7 +8,7 @@ int* subtraction_integer(int a, int b) { *result=a - b; return result; } -//arithmetic Subtraction specification float +//arithmetic Subtraction specification float 2 function float* subtraction_float(float a, float b) { float* result= malloc(sizeof (float)); *result=a - b;