summaryrefslogtreecommitdiff
path: root/libexec/httpd
diff options
context:
space:
mode:
authorleot <leot@NetBSD.org>2020-08-25 20:02:33 +0000
committerleot <leot@NetBSD.org>2020-08-25 20:02:33 +0000
commite537b82f0275ff6a25b17d5ccd939cc52e0ea64b (patch)
treebc72b64f27a15018af22c0b0cadbf8ae87a7bc39 /libexec/httpd
parent27d96ba8711159465d6034b0084e38f56d0b9cda (diff)
Fix a typo in a comment
Diffstat (limited to 'libexec/httpd')
-rw-r--r--libexec/httpd/printenv.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/httpd/printenv.lua b/libexec/httpd/printenv.lua
index 848449574f1..589e3095ee7 100644
--- a/libexec/httpd/printenv.lua
+++ b/libexec/httpd/printenv.lua
@@ -1,10 +1,10 @@
--- $NetBSD: printenv.lua,v 1.3 2015/12/07 03:11:48 kamil Exp $
+-- $NetBSD: printenv.lua,v 1.4 2020/08/25 20:02:33 leot Exp $
-- this small Lua script demonstrates the use of Lua in (bozo)httpd
-- it will simply output the "environment"
-- Keep in mind that bozohttpd forks for each request when started in
--- daemon mode, you can set global veriables here, but they will have
+-- daemon mode, you can set global variables here, but they will have
-- the same value on each invocation. You can not keep state between
-- two calls.