Skip to content

Commit c20b24a

Browse files
committed
Merge pull request #17 from areski/master
Update Readme.md - Fix some typo
2 parents a787782 + 64a805b commit c20b24a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
LuaJIT Language Toolkit
22
===
33

4-
The LuaJIT Language Toolkit is an implementation of the Lua programming language written in Lua iself.
4+
The LuaJIT Language Toolkit is an implementation of the Lua programming language written in Lua itself.
55
It works by generating a LuaJIT's bytecode including the debug informations and use the LuaJIT's virtual machine to run the generated bytecode.
66

77
On itself the language toolkit does not do anything useful since LuaJIT itself does the same things natively.
@@ -113,7 +113,7 @@ local function parse_return(ast, ls, line)
113113
end
114114
```
115115

116-
As you cas see the AST function are invoked using the `ast` object.
116+
As you can see the AST function are invoked using the `ast` object.
117117

118118
In addition the parser provides additional informations about:
119119

@@ -183,7 +183,7 @@ extern int luaopen_langloaders(lua_State *L);
183183
184184
The functions above can be used to create a custom LuaJIT executable that use the language toolkit implementation.
185185
186-
When the function `language_*` are used an indipendent `lua_State` is created behind the scenes and used to compile the bytecode.
186+
When the function `language_*` is used, an independent `lua_State` is created behind the scenes and used to compile the bytecode.
187187
Once the bytecode is generated it is loaded into the user's `lua_State` ready to be executed.
188188
The approach of using a separate Lua's state ensure that the process of compiling does not interfere with the user's application.
189189
@@ -333,4 +333,4 @@ The implementation is now complete in term of features and well tested, even for
333333
The language toolkit is currently capable of executing itself.
334334
This means that the language toolkit is able to correctly compile and load all of its module and execute them correctly.
335335
336-
Yet some bugs are probably present and you should be cautious when you use the language toolkit.
336+
Yet some bugs are probably present and you should be cautious when you use LuaJIT language toolkit.

0 commit comments

Comments
 (0)