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

Fix an incorrect comment in cowboy_router

This commit is contained in:
Loïc Hoguin 2013-02-27 12:40:24 +01:00
parent 80137fb2cd
commit 02ed254daa

View file

@ -130,8 +130,8 @@ compile_rules(<< $], _/binary >>, _, _, _, _) ->
compile_rules(<< C, Rest/binary >>, S, Segments, Rules, Acc) ->
compile_rules(Rest, S, Segments, Rules, << Acc/binary, C >>).
%% Everything past $: until $. or $[ or $] or end of binary
%% is the binding name.
%% Everything past $: until the segment separator ($. for hosts,
%% $/ for paths) or $[ or $] or end of binary is the binding name.
compile_binding(<<>>, _, <<>>) ->
erlang:error(badarg);
compile_binding(Rest = <<>>, _, Acc) ->