From 4d0148d5628b06407efc8e1a4a9ac42feea0e3fd Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Wed, 24 Aug 2011 15:54:01 +0200 Subject: [PATCH] fixing wrong feature usage --- examples/hello_routed_world/src/hello_routed_world.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello_routed_world/src/hello_routed_world.e b/examples/hello_routed_world/src/hello_routed_world.e index f98ed0dd..d065d3a8 100644 --- a/examples/hello_routed_world/src/hello_routed_world.e +++ b/examples/hello_routed_world/src/hello_routed_world.e @@ -151,7 +151,7 @@ feature -- Execution h.put_content_type (l_response_content_type) h.put_content_length (msg.count) res.set_status_code (200) - res.write_string (h.string) + res.write_headers_string (h.string) -- res.write_header (200, << -- ["Content-Type", l_response_content_type], -- ["Content-Length", msg.count.out