Skip to content

Commit

Permalink
chore: apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sharon "Cass" Cassidy <[email protected]>
  • Loading branch information
Panquesito7 and CascadingCascade authored Apr 20, 2023
1 parent 1cf1b68 commit 620ca44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions math/fibonacci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 620ca44

Please sign in to comment.