From 6f4ec89404777f97e122479a6c0f344958ed7898 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 25 Nov 2011 20:44:32 +0100 Subject: [PATCH] Fixed example due to recent interface changes --- library/server/ewsgi/examples/hello_world/src/hello_world.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/server/ewsgi/examples/hello_world/src/hello_world.e b/library/server/ewsgi/examples/hello_world/src/hello_world.e index cf9593c0..5d9efa27 100644 --- a/library/server/ewsgi/examples/hello_world/src/hello_world.e +++ b/library/server/ewsgi/examples/hello_world/src/hello_world.e @@ -21,7 +21,7 @@ feature {NONE} -- Initialization execute (req: WGI_REQUEST; res: WGI_RESPONSE) do res.set_status_code (200) - res.write_header_lines (<<["Content-Type: text/plain"]>>) + res.write_header_lines (<<["Content-Type", "text/plain"]>>) res.write_string ("Hello World!%N") end