From 230cbbcc9bd4615eb7a2d8f39255b57059f8d501 Mon Sep 17 00:00:00 2001 From: TsT Date: Sat, 10 Sep 2016 01:12:28 +0200 Subject: typo fix --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2ec4cb2..6a514df 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ thread:start(false, false) -- We can call join. -- Because of Lua state destroys in child thread we can not get --- returned Lua vaules so we just returns `true`. +-- returned Lua values so we just returns `true`. thread:join() ``` @@ -78,7 +78,7 @@ thread:start(true, true) -- We can call join. -- Because of Lua state destroys in child thread we can not get --- returned Lua vaules so we just returns `true`. +-- returned Lua values so we just returns `true`. thread:join() ``` @@ -111,7 +111,7 @@ local thread = require "llthreads2".new[[ thread:start() -- we can not use `thread:join(0)` because we can not call it twice --- so all returned vaules will be lost +-- so all returned values will be lost while thread:alive() do -- do some work end -- cgit v1.2.3-55-g6feb