Просмотр исходного кода

Add missing bracket in a guide example

Loïc Hoguin 11 лет назад
Родитель
Сommit
fdf815bfce
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      guide/resp.md

+ 1 - 1
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).
 ```