diff options
author | Matthias Endler <[email protected]> | 2013-06-27 01:01:01 +0200 |
---|---|---|
committer | Matthias Endler <[email protected]> | 2013-06-27 22:34:56 +0200 |
commit | f664329b0b11bdaa74f694260b3e3b3678f83d81 (patch) | |
tree | 6a8aebba642666a4c3f4b3b00d88f10234445b12 /guide/getting_started.md | |
parent | 61ca86b05493f82bcbddd76911fee64dc636c885 (diff) | |
download | cowboy-f664329b0b11bdaa74f694260b3e3b3678f83d81.tar.gz cowboy-f664329b0b11bdaa74f694260b3e3b3678f83d81.tar.bz2 cowboy-f664329b0b11bdaa74f694260b3e3b3678f83d81.zip |
Minor corrections of the guide
Diffstat (limited to 'guide/getting_started.md')
-rw-r--r-- | guide/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/getting_started.md b/guide/getting_started.md index 812b1e0..abd807a 100644 --- a/guide/getting_started.md +++ b/guide/getting_started.md @@ -50,7 +50,7 @@ we will just use the plain HTTP handler, which has three callback functions: init/3, handle/2 and terminate/3. You can find more information about the arguments and possible return values of these callbacks in the [cowboy_http_handler function reference](http://ninenines.eu/docs/en/cowboy/HEAD/manual/cowboy_http_handler). -Following is an example of a simple HTTP handler module. +Here is an example of a simple HTTP handler module. ``` erlang -module(my_handler). |