aboutsummaryrefslogtreecommitdiffstats
path: root/guide/getting_started.md
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-09-04 19:24:54 +0200
committerLoïc Hoguin <[email protected]>2013-09-04 19:24:54 +0200
commit4a30198f9068cc989616c8088e4b890bc1de259d (patch)
tree74f9847d6282c365e70245df13f77f3b5209faab /guide/getting_started.md
parentbd0de074c364ddd7d8f3dfdcdb6e4261433716d8 (diff)
downloadcowboy-4a30198f9068cc989616c8088e4b890bc1de259d.tar.gz
cowboy-4a30198f9068cc989616c8088e4b890bc1de259d.tar.bz2
cowboy-4a30198f9068cc989616c8088e4b890bc1de259d.zip
Make cowlib a proper dependency
Start moving a few functions from Cowboy into cowlib.
Diffstat (limited to 'guide/getting_started.md')
-rw-r--r--guide/getting_started.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/guide/getting_started.md b/guide/getting_started.md
index abd807a..2ad67db 100644
--- a/guide/getting_started.md
+++ b/guide/getting_started.md
@@ -3,10 +3,12 @@ Getting started
Cowboy does nothing by default.
-Cowboy requires the `crypto` and `ranch` applications to be started.
+Cowboy requires the `crypto`, `cowlib` and `ranch` applications to be
+started.
``` erlang
ok = application:start(crypto).
+ok = application:start(cowlib).
ok = application:start(ranch).
ok = application:start(cowboy).
```