Fix typo in README.md (#145)

This commit is contained in:
Buckaroo Banzai 2020-03-27 19:22:52 +01:00 committed by GitHub
parent 89e98f9d4d
commit e208629c4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.