aboutsummaryrefslogtreecommitdiffstats
path: root/guide/getting_started.md
diff options
context:
space:
mode:
Diffstat (limited to 'guide/getting_started.md')
-rw-r--r--guide/getting_started.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guide/getting_started.md b/guide/getting_started.md
index 4d3e7ab..8c01c7d 100644
--- a/guide/getting_started.md
+++ b/guide/getting_started.md
@@ -143,7 +143,7 @@ Listeners are a group of processes that are used to accept and manage
connections. The processes used specifically for accepting connections
are called acceptors. The number of acceptor processes is unrelated to
the maximum number of connections Cowboy can handle. Please refer to
-the [Ranch guide](http://ninenines.eu/docs/en/ranch/HEAD/guide/toc)
+the [Ranch guide](http://ninenines.eu/docs/en/ranch/HEAD/guide/)
for in-depth information.
Listeners are named. They spawn a given number of acceptors, listen for
@@ -157,7 +157,7 @@ we will simply map all URLs to our handler `hello_handler`,
using the wildcard `_` for both the hostname and path parts
of the URL.
-This is how the `hello_erlang_app:start/2` function looks like
+This is what the `hello_erlang_app:start/2` function looks like
with Cowboy initialized.
``` erlang