From e208629c4ccf5d178aafaf7f0f067c0e5bed33a0 Mon Sep 17 00:00:00 2001 From: Buckaroo Banzai <39065740+BuckarooBanzay@users.noreply.github.com> Date: Fri, 27 Mar 2020 19:22:52 +0100 Subject: [PATCH] Fix typo in README.md (#145) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 08a2f0d..3fcdd34 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ Requires C++14 compiler compliance. Tested with GCC 4.9+, clang 3.8 and Visual S `luarocks install effil` # Quick guide -As you may now there are not much script languages with **real** multithreading support (Lua/Python/Ruby and etc has global interpreter lock aka GIL). Effil solves this problem by running independent Lua VM instances in separate native threads and provides robust communicating primitives for creating threads and data sharing. +As you may know there are not much script languages with **real** multithreading support (Lua/Python/Ruby and etc has global interpreter lock aka GIL). Effil solves this problem by running independent Lua VM instances in separate native threads and provides robust communicating primitives for creating threads and data sharing. Effil library provides three major abstractions: 1. `effil.thread` - provides API for threads management.