diff --git a/README.md b/README.md index d33afa5..0f18ea5 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ crystal build --release src/kemal_sample.cr ``` Go to *http://localhost:3000* -Check [samples](https://github.com/sdogruyol/kemal/tree/master/samples) for more. +Check [samples](https://github.com/kemalcr/kemal/tree/master/samples) for more. # Installation diff --git a/src/kemal/param_parser.cr b/src/kemal/param_parser.cr index c8d79b7..da0e786 100644 --- a/src/kemal/param_parser.cr +++ b/src/kemal/param_parser.cr @@ -11,7 +11,7 @@ class Kemal::ParamParser end def parse_request - {% for part in %w{query body} %} + {% for part in %w(query body) %} if {{part.id}} = @request.{{part.id}} HTTP::Params.parse({{part.id}}) do |key, value| @params[key] ||= value