Skip to content

Commit 899a2cf

Browse files
committed
Documentation edits.
1 parent 9c23577 commit 899a2cf

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

preprocess.lua

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)