Fixed typo

master^2
jamesachamp 2019-11-09 21:48:49 -05:00 committed by GitHub
parent 7b23a5f07b
commit 9f5022cb07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ local fibsum = M.sum(M.map(M.range(25), fib))
print(fibsum) -- 196417
````
Or let us do the same, opbject-oriented style with chaining :
Or let us do the same, object-oriented style with chaining :
```lua
local function fib(n) return n < 2 and n or fib(n - 1) + fib(n - 2) end