aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-05-28 15:05:03 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-05-28 15:08:47 +0900
commit5e87e1faf646fed6139650f2a3adb13a3d09ccd9 (patch)
treeedebbab442caa3f8831fbf16111ac2022f93da0f /guides
parent3ce3b2233ad573ddd9142b6016de7c9158722ad4 (diff)
downloadrails-5e87e1faf646fed6139650f2a3adb13a3d09ccd9.tar.gz
rails-5e87e1faf646fed6139650f2a3adb13a3d09ccd9.tar.bz2
rails-5e87e1faf646fed6139650f2a3adb13a3d09ccd9.zip
fix incorrect class name [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_controller_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 848c9caa59..a906f64633 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -203,7 +203,7 @@ predefined raise/rescue flow to end up as a 400 Bad Request.
```ruby
class PeopleController < ActionController::Base
- # This will raise an ActiveModel::ForbiddenAttributes exception
+ # This will raise an ActiveModel::ForbiddenAttributesError exception
# because it's using mass assignment without an explicit permit
# step.
def create