From b955912dc2673d206e1519f1881e7775f74653a8 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Tue, 20 Mar 2012 16:17:43 +0100 Subject: [PATCH] fixed compilation issue (typo) --- .../request/rest/tests/src/gateway/nino/rest_service_gateway.e | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draft/library/server/request/rest/tests/src/gateway/nino/rest_service_gateway.e b/draft/library/server/request/rest/tests/src/gateway/nino/rest_service_gateway.e index 39b32f2e..d2cf85ee 100644 --- a/draft/library/server/request/rest/tests/src/gateway/nino/rest_service_gateway.e +++ b/draft/library/server/request/rest/tests/src/gateway/nino/rest_service_gateway.e @@ -18,7 +18,7 @@ feature -- Access print ("Example: start a Nino web server on port " + port_number.out + ", %Nand reply Hello World for any request such as http://localhost:" + port_number.out + "/" + base_url + "%N") end - create app.make_custom (to_wgi_service), base_url) + create app.make_custom (to_wgi_service, base_url) app.force_single_threaded app.listen (port_number)