1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-20 06:21:09 +02:00

Fix typo in Fibonacci exercise (#1634)

Fixes #1633.
This commit is contained in:
Dustin J. Mitchell 2024-01-02 18:15:15 -05:00 committed by GitHub
parent 6a30bbe54a
commit 43474d27d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.