aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorSemyon Perepelitsa <sema@sema.in>2013-12-11 03:03:49 +0800
committerSemyon Perepelitsa <sema@sema.in>2013-12-11 03:03:49 +0800
commit1cd965000bd0fe02b08cfb973f743d5867f763b4 (patch)
tree500373878f0532c75188b5d478fd5e20ce40ef15 /actionview
parentdbe6a8b03b78c0729a39cc849ca8b79752c65235 (diff)
downloadrails-1cd965000bd0fe02b08cfb973f743d5867f763b4.tar.gz
rails-1cd965000bd0fe02b08cfb973f743d5867f763b4.tar.bz2
rails-1cd965000bd0fe02b08cfb973f743d5867f763b4.zip
Fix typo in docs, missing colon in Symbol literal [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/form_tag_helper.rb2
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)