DOC: fix lua use-service example

This commit is contained in:
Pieter Baauw 2015-10-01 22:47:12 +02:00 committed by Willy Tarreau
parent 10770faf8e
commit 2dcb9bc5bf

View File

@ -408,12 +408,12 @@ Core class
.. code-block:: lua .. code-block:: lua
core.register_service("hello-world", "http" }, function(txn) core.register_service("hello-world", "http" }, function(applet)
local response = "Hello World !" local response = "Hello World !"
applet:set_status(200) applet:set_status(200)
applet:add_header("content-length", string.length(response)) applet:add_header("content-length", string.len(response))
applet:add_header("content-type", "text/plain") applet:add_header("content-type", "text/plain")
applet:start_reponse() applet:start_response()
applet:send(response) applet:send(response)
end) end)
.. ..
@ -1361,12 +1361,12 @@ AppletHTTP class
This is an hello world sample code: This is an hello world sample code:
.. code-block:: lua .. code-block:: lua
core.register_service("hello-world", "http" }, function(txn) core.register_service("hello-world", "http" }, function(applet)
local response = "Hello World !" local response = "Hello World !"
applet:set_status(200) applet:set_status(200)
applet:add_header("content-length", string.length(response)) applet:add_header("content-length", string.len(response))
applet:add_header("content-type", "text/plain") applet:add_header("content-type", "text/plain")
applet:start_reponse() applet:start_response()
applet:send(response) applet:send(response)
end) end)