diff --git a/Lua-Examples.md b/Lua-Examples.md index 011ddf8..ad30907 100644 --- a/Lua-Examples.md +++ b/Lua-Examples.md @@ -49,7 +49,7 @@ Writes data to temporary file and runs external shell command: function inbucket.after.message_stored(msg) local content = string.format("%q,%q", msg.from, msg.subject) - -- Write POST data to temporary file. + -- Write content to temporary file. local fnam = os.tmpname() local f = assert(io.open(fnam, "w+")) assert(f:write(content))