From 9eafb4fd835c599956972a7217f724317bddf700 Mon Sep 17 00:00:00 2001 From: Augusto Date: Tue, 8 Jun 2021 14:34:34 +0100 Subject: [PATCH] Fix typo in exercise `fibonacci2` in the Rust piscine --- subjects/fibonacci2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/fibonacci2/README.md b/subjects/fibonacci2/README.md index dd05a6fcb..76f9e14ca 100644 --- a/subjects/fibonacci2/README.md +++ b/subjects/fibonacci2/README.md @@ -4,7 +4,7 @@ Complete the body of the **function** `fibonacci`. -This functions receives a number `n` and returns the nth number in the fibonacci series. +This function receives a number `n` and returns the `n`th number in the fibonacci series. The Fibonacci Series starts like this: 0, 1, 1, 2, 3, 5, 8, 13 etc...