aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-06-30 18:17:34 +0200
committerLoïc Hoguin <[email protected]>2014-06-30 18:17:34 +0200
commitfdf815bfce89ea0e27e44cbdb781f5e20bd235ef (patch)
tree5ee5896b5ee5d4aacc9e20e1cff78a7bc1f095da
parent163f0b5651c6b8104f5068149380c8df931d4bbf (diff)
downloadcowboy-fdf815bfce89ea0e27e44cbdb781f5e20bd235ef.tar.gz
cowboy-fdf815bfce89ea0e27e44cbdb781f5e20bd235ef.tar.bz2
cowboy-fdf815bfce89ea0e27e44cbdb781f5e20bd235ef.zip
Add missing bracket in a guide example
-rw-r--r--guide/resp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guide/resp.md b/guide/resp.md
index 088b10d..b3da72d 100644
--- a/guide/resp.md
+++ b/guide/resp.md
@@ -52,7 +52,7 @@ client may know how to read the body.
``` erlang
{ok, Req2} = cowboy_req:reply(200, [
- {<<"content-type">>, <<"text/plain">>
+ {<<"content-type">>, <<"text/plain">>}
], "Hello world!", Req).
```