diff options
author | shingo.nakanishi <shingo7ka24@gmail.com> | 2015-09-17 17:06:54 +0900 |
---|---|---|
committer | shingo.nakanishi <shingo7ka24@gmail.com> | 2015-09-17 17:06:54 +0900 |
commit | 66d6cab9874e599bd4bde946a9a699b1aa17a737 (patch) | |
tree | 836c9d2e69ac05163793bc4a4080dc310d2bab47 /actionview/lib/action_view/helpers | |
parent | 1ebd987aeba95ee65fc2647581fb87fed55a0a23 (diff) | |
download | rails-66d6cab9874e599bd4bde946a9a699b1aa17a737.tar.gz rails-66d6cab9874e599bd4bde946a9a699b1aa17a737.tar.bz2 rails-66d6cab9874e599bd4bde946a9a699b1aa17a737.zip |
Fixed helpers submit button Examples [ci skip]
Diffstat (limited to 'actionview/lib/action_view/helpers')
-rw-r--r-- | actionview/lib/action_view/helpers/form_helper.rb | 2 |
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!') |