aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
Diffstat (limited to 'actionview')
-rw-r--r--actionview/CHANGELOG.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index fe8bbde445..ef48540015 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,9 +1,8 @@
* Element of the `grouped_options_for_select` can
optionally contain html attributes as the last element of the array.
- Example:
grouped_options_for_select(
- [["North America", [['United States','US'],"Canada"], :data => { :foo => 'bar' }]]
+ [["North America", [['United States','US'],"Canada"], data: { foo: 'bar' }]]
)
*Vasiliy Ermolovich*