From b448939282b282d09a6618e1ffcd5efcef2ff4e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 1 Mar 2013 14:03:21 +0100 Subject: Fix an error in the guide introduction Reported by Joe Armstrong. --- guide/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/introduction.md b/guide/introduction.md index 0ac2e07..d632950 100644 --- a/guide/introduction.md +++ b/guide/introduction.md @@ -86,10 +86,10 @@ The dispatch list is explained in greater details in the Routing section of the guide. ``` erlang -Dispatch = [ +Dispatch = cowboy_router:compile([ %% {URIHost, list({URIPath, Handler, Opts})} {'_', [{'_', my_handler, []}]} -], +]), %% Name, NbAcceptors, TransOpts, ProtoOpts cowboy:start_http(my_http_listener, 100, [{port, 8080}], -- cgit v1.2.3