aboutsummaryrefslogtreecommitdiffstats
path: root/guide
diff options
context:
space:
mode:
Diffstat (limited to 'guide')
-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).
```