From 5aa202fc57f76bd1d51053cada2e60a1c53ba002 Mon Sep 17 00:00:00 2001 From: Augusto Date: Mon, 7 Jun 2021 15:24:44 +0100 Subject: [PATCH] Rephrase fibonacci exercise instructions --- subjects/fibonacci/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/fibonacci/README.md b/subjects/fibonacci/README.md index cb90c944..68e66353 100644 --- a/subjects/fibonacci/README.md +++ b/subjects/fibonacci/README.md @@ -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`.