From 8a0b45f508b0f4166179a9afdb4aec77f62ac405 Mon Sep 17 00:00:00 2001 From: Praneeth Jain Date: Mon, 2 Oct 2023 11:59:26 +0530 Subject: [PATCH] rename variable names in function description --- math/binary_exponentiation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/binary_exponentiation.c b/math/binary_exponentiation.c index f6b3be0d..dbf849cf 100644 --- a/math/binary_exponentiation.c +++ b/math/binary_exponentiation.c @@ -14,7 +14,7 @@ #include /// for exit() /** - * @brief Determines a raised to the nth power via binary exponentiation. + * @brief Determines base raised to an exponent via binary exponentiation. * @param base of the given number * @param exponent of the given number * @return a raised to the nth power