Merge pull request #71 from jamesachamp/patch-1

Fixed typo in README.
master
Roland 2019-11-10 07:31:21 +00:00 committed by GitHub
commit 6fe8d76d50
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