From a8c85e2d7fd2fa14e41bc766569a94a84391fba6 Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Sun, 25 Jul 2021 23:38:42 +0530 Subject: [PATCH] Update bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp Co-authored-by: David Leal --- bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp b/bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp index 77f270fe6..7684c65c9 100644 --- a/bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp +++ b/bit_manipulation/count_of_trailing_ciphers_in_factorial_n.cpp @@ -31,7 +31,7 @@ namespace bit_manipulation { namespace count_of_trailing_ciphers_in_factorial_n { /** * @brief Function to count the number of the trailing ciphers - * @param n, Number for which `n!` ciphers are returned + * @param n number for which `n!` ciphers are returned * @return count, Number of ciphers in `n!`. */ uint64_t numberOfCiphersInFactorialN(uint64_t n) {