aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-11-12 13:14:49 -0500
committerVipul A M <vipulnsward@gmail.com>2016-11-12 13:14:49 -0500
commit7e7d6ccf344d3cb42b836e22e1381269f55b67d2 (patch)
tree9cdb442af2e89f8ba95cdc6c7967e12dafde65e7 /actionview/CHANGELOG.md
parent26dd9b26ab7317f94fd285245879e888344143b2 (diff)
downloadrails-7e7d6ccf344d3cb42b836e22e1381269f55b67d2.tar.gz
rails-7e7d6ccf344d3cb42b836e22e1381269f55b67d2.tar.bz2
rails-7e7d6ccf344d3cb42b836e22e1381269f55b67d2.zip
Changelog edits
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 67bd9b5c8f..6e6ce64e72 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -2,12 +2,12 @@
*Rafael Mendonça França*
-* Render now accepts any keys for locals, including reserved words
+* Render now accepts any keys for locals, including reserved keywords.
Only locals with valid variable names get set directly. Others
- will still be available in local_assigns.
+ will still be available in `local_assigns`.
- Example of render with reserved words:
+ Example of render with reserved keywords:
```erb
<%= render "example", class: "text-center", message: "Hello world!" %>