Rephrase fibonacci exercise instructions

This commit is contained in:
Augusto 2021-06-07 15:24:44 +01:00
parent 8f18512562
commit 5aa202fc57
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Write a **recursive** function that returns the value of the fibonacci sequence matching the index passed as parameter.
Write a **recursive** function that returns the value at the position `index` in the fibonacci sequence.
The first value is at index `0`.