diff options
author | Damien Mathieu <42@dmathieu.com> | 2013-12-10 11:37:50 -0800 |
---|---|---|
committer | Damien Mathieu <42@dmathieu.com> | 2013-12-10 11:37:50 -0800 |
commit | 031ce1f58128dc12bfef90e224e90c608fe489b4 (patch) | |
tree | 500373878f0532c75188b5d478fd5e20ce40ef15 | |
parent | dbe6a8b03b78c0729a39cc849ca8b79752c65235 (diff) | |
parent | 1cd965000bd0fe02b08cfb973f743d5867f763b4 (diff) | |
download | rails-031ce1f58128dc12bfef90e224e90c608fe489b4.tar.gz rails-031ce1f58128dc12bfef90e224e90c608fe489b4.tar.bz2 rails-031ce1f58128dc12bfef90e224e90c608fe489b4.zip |
Merge pull request #13258 from semaperepelitsa/docs
Fix typo in docs, missing colon in Symbol literal
-rw-r--r-- | actionview/lib/action_view/helpers/form_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_tag_helper.rb b/actionview/lib/action_view/helpers/form_tag_helper.rb index 142c27ace0..7ceb56625f 100644 --- a/actionview/lib/action_view/helpers/form_tag_helper.rb +++ b/actionview/lib/action_view/helpers/form_tag_helper.rb @@ -465,7 +465,7 @@ module ActionView # # <strong>Ask me!</strong> # # </button> # - # button_tag "Checkout", data: { disable_with => "Please wait..." } + # button_tag "Checkout", data: { :disable_with => "Please wait..." } # # => <button data-disable-with="Please wait..." name="button" type="submit">Checkout</button> # def button_tag(content_or_options = nil, options = nil, &block) |