aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2013-07-17 20:55:04 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2013-07-17 20:55:04 -0700
commit77e4f317ecc7ebfc765cebdf997f033fa2d27969 (patch)
treefd9dc5647941809d585133b63b66196ca50a9f5b /guides/source/upgrading_ruby_on_rails.md
parent2a611724b20da1afda9feb9adb8834b74f1c6722 (diff)
parent9220bf05b5711350d6093fe84c81e81985368660 (diff)
downloadrails-77e4f317ecc7ebfc765cebdf997f033fa2d27969.tar.gz
rails-77e4f317ecc7ebfc765cebdf997f033fa2d27969.tar.bz2
rails-77e4f317ecc7ebfc765cebdf997f033fa2d27969.zip
Merge pull request #11483 from garysweaver/grammar_fix_in_upgrade_documentation
grammar fix in upgrade documentation
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-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 5992e94cd8..06798faa98 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -155,7 +155,7 @@ Rails 4.0 no longer supports loading plugins from `vendor/plugins`. You must rep
* Rails 4.0 has changed `serialized_attributes` and `attr_readonly` to class methods only. You shouldn't use instance methods since it's now deprecated. You should change them to use class methods, e.g. `self.serialized_attributes` to `self.class.serialized_attributes`.
-* 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) to a smoothly upgrade path.
+* 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 `whitelist_attributes` or `mass_assignment_sanitizer` options.