File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -2116,11 +2116,10 @@ local lib = {
21162116 ---- ------------------------------------------------------------
21172117
21182118 -- processFile()
2119- -- Process a Lua file.
2119+ -- Process a Lua file. Returns nil and a message on error.
21202120 --
2121- -- info, error = processFile( params )
2122- -- info: Table with various information, or nil if an error happened. See 'ProcessInfo' for more info.
2123- -- error: Error message, or nil if no error happened.
2121+ -- info = processFile( params )
2122+ -- info: Table with various information. (See 'ProcessInfo' for more info.)
21242123 --
21252124 -- params: Table with these fields:
21262125 -- pathIn = pathToInputFile -- [Required]
@@ -2141,10 +2140,10 @@ local lib = {
21412140 processFile = processFile ,
21422141
21432142 -- processString()
2144- -- Process Lua code.
2143+ -- Process Lua code. Returns nil and a message on error.
21452144 --
21462145 -- luaString, info = processString( params )
2147- -- info: Table with various information, or a message if an error happened. See 'ProcessInfo' for more info.
2146+ -- info: Table with various information. ( See 'ProcessInfo' for more info.)
21482147 --
21492148 -- params: Table with these fields:
21502149 -- code = luaString -- [Required]
You can’t perform that action at this time.
0 commit comments