From 0fa811facd828a869fdc6388fa6922b2700f3e95 Mon Sep 17 00:00:00 2001 From: Ehsanul Hoque Date: Mon, 30 Jan 2017 15:54:30 -0800 Subject: [PATCH] fix syntax in README example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 04a3c85..50a76b1 100755 --- a/README.md +++ b/README.md @@ -71,16 +71,16 @@ By default the JQueryParams fix is applied to all http methods, however you can the applies_to option with your chosen http method: ```ruby -use Rack::JQueryParams :applies_to => :get +use Rack::JQueryParams, :applies_to => :get ``` You can also set applies_to to be an array of http methods: ```ruby -use Rack::JQueryParams :applies_to => [:get, :put, :delete] +use Rack::JQueryParams, :applies_to => [:get, :put, :delete] ``` ## License -Please refer to [LICENSE.md](https://github.com/calebclark/rack-jquery-params/blob/master/LICENSE.md). \ No newline at end of file +Please refer to [LICENSE.md](https://github.com/calebclark/rack-jquery-params/blob/master/LICENSE.md).