Merge pull request #420 from bobby569/fib_example

fix fibonacci example typo
This commit is contained in:
Angelos Chalaris
2017-12-30 12:58:58 +02:00
committed by GitHub
3 changed files with 6 additions and 7 deletions

View File

@ -14,5 +14,5 @@ const fibonacci = n =>
```
```js
fibonacci(6); // 720
fibonacci(6); // [0, 1, 1, 2, 3, 5]
```