From 19fb5ba4dd7161357543b9ea63efa8d21889f953 Mon Sep 17 00:00:00 2001 From: Rachit Bhalla Date: Mon, 19 Oct 2020 00:53:48 +0530 Subject: [PATCH] updated with the suggested changes --- conversions/octal_to_hexadecimal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conversions/octal_to_hexadecimal.c b/conversions/octal_to_hexadecimal.c index 521064b2..e18edd20 100644 --- a/conversions/octal_to_hexadecimal.c +++ b/conversions/octal_to_hexadecimal.c @@ -14,7 +14,7 @@ /** * @brief Convert octal number to decimal number * @param octalValue is the octal number that needs to be converted - * @returns A decimal number after conversion + * @returns a decimal number after conversion */ long octalToDecimal(long octalValue){ long decimalValue = 0; @@ -31,7 +31,7 @@ long octalToDecimal(long octalValue){ /** * @brief Convert octal number to hexadecimal number * @param octalValue is the octal number that needs to be converted - * @returns A hexadecimal value as a string after conversion + * @returns a hexadecimal value as a string after conversion */ char *octalToHexadecimal(long octalValue){ char *hexadecimalValue = malloc(256 * sizeof(char));