mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
fix incorrect class name [ci skip]
This commit is contained in:
parent
3ce3b2233a
commit
5e87e1faf6
2 changed files with 2 additions and 2 deletions
|
@ -797,7 +797,7 @@ module ActionController
|
|||
#
|
||||
# class PeopleController < ActionController::Base
|
||||
# # Using "Person.create(params[:person])" would raise an
|
||||
# # ActiveModel::ForbiddenAttributes exception because it'd
|
||||
# # ActiveModel::ForbiddenAttributesError exception because it'd
|
||||
# # be using mass assignment without an explicit permit step.
|
||||
# # This is the recommended form:
|
||||
# def create
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue