1
0

Library fix: loadstring was missing, and loadfile had loadstrings documentation

This commit is contained in:
Jon Michael Aanes 2017-07-22 15:08:56 +02:00
parent 762b8f3d20
commit 9a46a959e9

View File

@ -104,8 +104,8 @@ library_function {
}
library_function {
func = loadfile,
name = 'loadfile',
func = loadstring,
name = 'loadstring',
para = 'string [, chunkname]',
docs = [[
Similar to load, but gets the chunk from the given string.