Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Yonaba/Moses.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjamesachamp <jameschamp@acm.org>2019-11-10 05:48:49 +0300
committerGitHub <noreply@github.com>2019-11-10 05:48:49 +0300
commit9f5022cb078797ed1dec02ab690881e085e3c2ed (patch)
tree4df40a39109e62c059e78f09cac1c85740b27533
parent7b23a5f07bdbafb1d0c86e0a93dcab222d5b79c0 (diff)
Fixed typo
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d007f02..9ac401a 100644
--- a/README.md
+++ b/README.md
@@ -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