# HG changeset patch # User Kim Alvefur # Date 1635336394 -7200 # Node ID 1c6d353550cc313aa08ac1328d51cc7a90b815ec # Parent e6f46d1b3337b10e5e7c1858b3d31041af924ddc mod_rest: Correct option name in error message diff -r e6f46d1b3337 -r 1c6d353550cc mod_rest/apidemo.lib.lua --- a/mod_rest/apidemo.lib.lua Tue Oct 26 18:07:35 2021 +0200 +++ b/mod_rest/apidemo.lib.lua Wed Oct 27 14:06:34 2021 +0200 @@ -11,7 +11,7 @@ }); local index do - local f = assert(io.open(api_demo.."/index.html"), "'api_demo_resources' should point to the 'dist' directory"); + local f = assert(io.open(api_demo.."/index.html"), "'rest_demo_resources' should point to the 'dist' directory"); index = f:read("*a"); f:close();