This commit is contained in:
Edgar 2021-12-24 13:20:20 +01:00
parent c2106f029c
commit d49f1c8fbf
No known key found for this signature in database
GPG key ID: 8731E6C0166EAA85

View file

@ -59,7 +59,7 @@ impl Iterator for Fibonacci {
}
```
Since fibonacci series are infinite, we always return Some(), but if you implement a non-infinite iterator you will have to return None at some point.
Since fibonacci series are infinite, we always return `Some()`, but if you implement a non-infinite iterator you will have to return None at some point.
And then to see how it works: