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>2018-07-28 11:11:38 +0300
committerGitHub <noreply@github.com>2018-07-28 11:11:38 +0300
commit108d212e989fc4e39d37e562fedc64f9e2e976e4 (patch)
tree3ef851f1cc555dcc7b0306b40fb0c3368e3bab32
parentded0a9b773bb78ded2c1dd5da721bbee4a3e32c6 (diff)
parent0784f16c5a18cb8a3206e7be9df8a9856bc9cb46 (diff)
Merge pull request #51 from tst2005/patch-1
typo fix
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index feff3e9..9dce2d3 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -159,7 +159,7 @@ Returns a function which iterates on each key-value pair in a given table (simil
If `n` is not provided, it defaults to 1.
```lua
-local t = {'a,'b','c'}
+local t = {'a','b','c'}
for k,v in _.cycle(t, 2) do
print(k,v)
end