aboutsummaryrefslogtreecommitdiffstats
path: root/examples/echo_get/src/toppage_handler.erl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/echo_get/src/toppage_handler.erl')
-rw-r--r--examples/echo_get/src/toppage_handler.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/echo_get/src/toppage_handler.erl b/examples/echo_get/src/toppage_handler.erl
index 800284e..92762e8 100644
--- a/examples/echo_get/src/toppage_handler.erl
+++ b/examples/echo_get/src/toppage_handler.erl
@@ -14,9 +14,9 @@ init(Req, Opts) ->
echo(<<"GET">>, undefined, Req) ->
cowboy_req:reply(400, [], <<"Missing echo parameter.">>, Req);
echo(<<"GET">>, Echo, Req) ->
- cowboy_req:reply(200, [
- {<<"content-type">>, <<"text/plain; charset=utf-8">>}
- ], Echo, Req);
+ cowboy_req:reply(200, #{
+ <<"content-type">> => <<"text/plain; charset=utf-8">>
+ }, Echo, Req);
echo(_, _, Req) ->
%% Method not allowed.
cowboy_req:reply(405, Req).