aboutsummaryrefslogtreecommitdiffstats
path: root/guide
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-01-11 16:55:11 +0100
committerLoïc Hoguin <[email protected]>2013-01-11 16:55:11 +0100
commit1d4569875756e5b88d032fc1b1613c9deb8053e8 (patch)
tree0dedbda0bd775725804c518ff95891a2ab0218d2 /guide
parent10e3692fa62ebc57cfe4f8677382119a40b55e53 (diff)
downloadcowboy-1d4569875756e5b88d032fc1b1613c9deb8053e8.tar.gz
cowboy-1d4569875756e5b88d032fc1b1613c9deb8053e8.tar.bz2
cowboy-1d4569875756e5b88d032fc1b1613c9deb8053e8.zip
Fix getting started example, missing env
Diffstat (limited to 'guide')
-rw-r--r--guide/introduction.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/introduction.md b/guide/introduction.md
index 871e243..0ac99e5 100644
--- a/guide/introduction.md
+++ b/guide/introduction.md
@@ -78,7 +78,7 @@ Dispatch = [
%% Name, NbAcceptors, TransOpts, ProtoOpts
cowboy:start_http(my_http_listener, 100,
[{port, 8080}],
- [{dispatch, Dispatch}]
+ [{env, [{dispatch, Dispatch}]}]
).
```