aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-09-18 03:40:51 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-09-18 03:40:51 +0530
commit8841f45129e586f580e0f3e5105de72b5eb575fe (patch)
tree9f64efc98d3b88ba8918e83d03d789737f21f3f7 /actionview
parent57a893b54a7364ed919c7e49e81ab245e25b5e16 (diff)
downloadrails-8841f45129e586f580e0f3e5105de72b5eb575fe.tar.gz
rails-8841f45129e586f580e0f3e5105de72b5eb575fe.tar.bz2
rails-8841f45129e586f580e0f3e5105de72b5eb575fe.zip
[ci skip] ActionView and ActionMailer CHANGELOG docs fixes
Diffstat (limited to 'actionview')
-rw-r--r--actionview/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 5e0b134ba4..ed58933472 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -127,12 +127,12 @@
Before:
- #=> favicon_link_tag 'myicon.ico'
+ # => favicon_link_tag 'myicon.ico'
<link href="/assets/myicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
After:
- #=> favicon_link_tag 'myicon.ico'
+ # => favicon_link_tag 'myicon.ico'
<link href="/assets/myicon.ico" rel="shortcut icon" type="image/x-icon" />
*Geoffroy Lorieux*
@@ -145,7 +145,7 @@
*Joost Baaij*
-* `collection_check_boxes` respects `:index` option for the hidden filed name.
+* `collection_check_boxes` respects `:index` option for the hidden field name.
Fixes #14147.
@@ -166,7 +166,7 @@
*Vasiliy Ermolovich*
-* Fixed a problem where the default options for the `button_tag` helper is not
+* Fixed a problem where the default options for the `button_tag` helper are not
applied correctly.
Fixes #14254.