Browse Source

Fix an incorrect comment in cowboy_router

Loïc Hoguin 12 years ago
parent
commit
02ed254daa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/cowboy_router.erl

+ 2 - 2
src/cowboy_router.erl

@@ -130,8 +130,8 @@ compile_rules(<< $], _/binary >>, _, _, _, _) ->
 compile_rules(<< C, Rest/binary >>, S, Segments, Rules, Acc) ->
 compile_rules(<< C, Rest/binary >>, S, Segments, Rules, Acc) ->
 	compile_rules(Rest, S, Segments, Rules, << Acc/binary, C >>).
 	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(<<>>, _, <<>>) ->
 compile_binding(<<>>, _, <<>>) ->
 	erlang:error(badarg);
 	erlang:error(badarg);
 compile_binding(Rest = <<>>, _, Acc) ->
 compile_binding(Rest = <<>>, _, Acc) ->