aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorMina Slater <slater.mina@gmail.com>2018-08-22 09:28:38 -0500
committerMina Slater <slater.mina@gmail.com>2018-08-22 09:28:38 -0500
commit0292a37533ff2b55189a42b4c01c7840d3785e23 (patch)
tree73e3a07a2bf69c01c2955ce4a6576b5e2b96e0c7 /guides
parent58b78376e8f6cee17df96a4c2de0c4bde3ff65d5 (diff)
downloadrails-0292a37533ff2b55189a42b4c01c7840d3785e23.tar.gz
rails-0292a37533ff2b55189a42b4c01c7840d3785e23.tar.bz2
rails-0292a37533ff2b55189a42b4c01c7840d3785e23.zip
[ci skip] revert terminology related to syntax
Diffstat (limited to 'guides')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 734c7cb5ce..319bc09be3 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -1200,7 +1200,7 @@ to the database as `NULL` instead of passing the `nil` value through YAML (`"---
* Rails 4.0 has removed `attr_accessible` and `attr_protected` feature in favor of Strong Parameters. You can use the [Protected Attributes gem](https://github.com/rails/protected_attributes) for a smooth upgrade path.
* If you are not using Protected Attributes, you can remove any options related to
-this gem such as `allowlist_attributes` or `mass_assignment_sanitizer` options.
+this gem such as `whitelist_attributes` or `mass_assignment_sanitizer` options.
* Rails 4.0 requires that scopes use a callable object such as a Proc or lambda: