From 620ca443cf7f09cdfc8775dd55a8b126b67cb5b0 Mon Sep 17 00:00:00 2001 From: David Leal Date: Thu, 20 Apr 2023 13:07:18 -0600 Subject: [PATCH] chore: apply suggestions from code review Co-authored-by: Sharon "Cass" Cassidy --- math/fibonacci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math/fibonacci.c b/math/fibonacci.c index fbda941a3e..60752e7ae5 100644 --- a/math/fibonacci.c +++ b/math/fibonacci.c @@ -20,8 +20,8 @@ * @param number - n in "nth term" and it can't be negative as well as zero * @return nth term in unsigned type * @warning - * Only till 47th and 48th fibonacci element can be stored in 'int' and - * 'unsigned' respectively (takes more than 20 seconds to print) + * Only till 47th and 48th fibonacci element can be stored in `int` and + * `unsigned int` respectively (takes more than 20 seconds to print) */ unsigned int fib(int number) {