Fixed example due to recent interface changes

This commit is contained in:
Jocelyn Fiat
2011-11-25 20:44:32 +01:00
parent cdfc6851e7
commit 6f4ec89404

View File

@@ -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