aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorshingo.nakanishi <shingo7ka24@gmail.com>2015-09-17 17:06:54 +0900
committershingo.nakanishi <shingo7ka24@gmail.com>2015-09-17 17:06:54 +0900
commit66d6cab9874e599bd4bde946a9a699b1aa17a737 (patch)
tree836c9d2e69ac05163793bc4a4080dc310d2bab47 /actionview
parent1ebd987aeba95ee65fc2647581fb87fed55a0a23 (diff)
downloadrails-66d6cab9874e599bd4bde946a9a699b1aa17a737.tar.gz
rails-66d6cab9874e599bd4bde946a9a699b1aa17a737.tar.bz2
rails-66d6cab9874e599bd4bde946a9a699b1aa17a737.zip
Fixed helpers submit button Examples [ci skip]
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/form_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb
index 3a9acafaa2..8c7ba8814e 100644
--- a/actionview/lib/action_view/helpers/form_helper.rb
+++ b/actionview/lib/action_view/helpers/form_helper.rb
@@ -1881,7 +1881,7 @@ module ActionView
#
# ==== Examples
# button("Create a post")
- # # => <button name='button' type='submit'>Create post</button>
+ # # => <button name='button' type='submit'>Add post</button>
#
# button do
# content_tag(:strong, 'Ask me!')