fixed compilation issue (typo)

This commit is contained in:
Jocelyn Fiat
2012-03-20 16:17:43 +01:00
parent 50223b12f7
commit b955912dc2

View File

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