aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-05-21 12:32:55 -0400
committerJon Moss <me@jonathanmoss.me>2016-05-21 12:32:55 -0400
commitae7b5314f115129f4d6f88fb422bd0048a093959 (patch)
tree8edb22a97b27624775ffe297c8359ff674d5ce82 /actionview/CHANGELOG.md
parent5ec889eb8b81be1578a30373dacb57c765700157 (diff)
downloadrails-ae7b5314f115129f4d6f88fb422bd0048a093959.tar.gz
rails-ae7b5314f115129f4d6f88fb422bd0048a093959.tar.bz2
rails-ae7b5314f115129f4d6f88fb422bd0048a093959.zip
Remove space, properly italicize
Difference in rendering --> https://gist.github.com/maclover7/a50ff9231eb825c39c77cd5858af6d9a [ci skip]
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 0b40699c77..9d669c7cd8 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,19 +1,19 @@
-* `select_tag`'s `include_blank` option for generation for blank option tag, now adds an empty space label,
+* `select_tag`'s `include_blank` option for generation for blank option tag, now adds an empty space label,
when the value as well as content for option tag are empty, so that we confirm with html specification.
Ref: https://www.w3.org/TR/html5/forms.html#the-option-element.
Generation of option before:
-
+
```html
<option value=""></option>
```
-
- Generation of option after:
+
+ Generation of option after:
```html
<option value="" label=" "></option>
```
- *Vipul A M *
+ *Vipul A M*
Please check [5-0-stable](https://github.com/rails/rails/blob/5-0-stable/actionview/CHANGELOG.md) for previous changes.