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:
authorRoland <roland.yonaba@gmail.com>2019-11-10 10:31:21 +0300
committerGitHub <noreply@github.com>2019-11-10 10:31:21 +0300
commit6fe8d76d50a22d85fe064aaa80390b72381befed (patch)
tree4df40a39109e62c059e78f09cac1c85740b27533
parent7b23a5f07bdbafb1d0c86e0a93dcab222d5b79c0 (diff)
parent9f5022cb078797ed1dec02ab690881e085e3c2ed (diff)
Merge pull request #71 from jamesachamp/patch-1HEADmaster
Fixed typo in README.
-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