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:
-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