From 43474d27d1276e8a88307a1686ee3f36cd77cf7f Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Tue, 2 Jan 2024 18:15:15 -0500 Subject: [PATCH] Fix typo in Fibonacci exercise (#1634) Fixes #1633. --- src/types-and-values/exercise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types-and-values/exercise.md b/src/types-and-values/exercise.md index 3b6529a7..76abd830 100644 --- a/src/types-and-values/exercise.md +++ b/src/types-and-values/exercise.md @@ -4,7 +4,7 @@ minutes: 30 # Exercise: Fibonacci -The first and second Fibonacci numbers are both `1`. For n>2, he n'th Fibonacci +The first and second Fibonacci numbers are both `1`. For n>2, the n'th Fibonacci number is calculated recursively as the sum of the n-1'th and n-2'th Fibonacci numbers.