From 89a2b8f7284bf48ccaac7a20cc154b042ef541d5 Mon Sep 17 00:00:00 2001 From: futoid Date: Thu, 6 Apr 2023 11:14:56 +0530 Subject: [PATCH] comment improvement --- math/finding_number_of_digits_in_a_number.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/finding_number_of_digits_in_a_number.cpp b/math/finding_number_of_digits_in_a_number.cpp index c58a9f975..6b174cc43 100644 --- a/math/finding_number_of_digits_in_a_number.cpp +++ b/math/finding_number_of_digits_in_a_number.cpp @@ -9,7 +9,7 @@ * number i.e, we can use it by inputting values whether it can be a * positive/negative value, let's say: an integer. There is also a second * method: by using "K = floor(log10(N) + 1)", but it's only applicable for - * numbers (not integers). The code for that is also included (count_digits). + * numbers (not integers). The code for that is also included (finding_number_of_digits_in_a_number_using_log). * For more details, refer to the * [Algorithms-Explanation](https://github.com/TheAlgorithms/Algorithms-Explanation/blob/master/en/Basic%20Math/Finding * the number of digits in a number.md) repository.