From 9d6cd87df0278f41b830e71254fb6ef47a0eccfd Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Tue, 28 Feb 2023 13:29:42 -0800 Subject: [PATCH] Updated Lua Examples (markdown) --- Lua-Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))