0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00

Add missing bracket in a guide example

This commit is contained in:
Loïc Hoguin 2014-06-30 18:17:34 +02:00
parent 163f0b5651
commit fdf815bfce

View file

@ -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).
```