aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-03-19 15:40:18 -0700
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-03-19 15:40:18 -0700
commitc08e6e0031f3e3d3336505a38885a8199719dc73 (patch)
treec4d334b194e59e88e088b3d269c785523437a4c3
parent0fe4ae93b4f902ac5757304e015c415bf986a0d0 (diff)
parentacd525517c982835c4ca1cea01bf8c299381bf56 (diff)
downloadrails-c08e6e0031f3e3d3336505a38885a8199719dc73.tar.gz
rails-c08e6e0031f3e3d3336505a38885a8199719dc73.tar.bz2
rails-c08e6e0031f3e3d3336505a38885a8199719dc73.zip
Merge pull request #9816 from sebasoga/strong_parameters_guide_fix
Fix guides error on error class name
-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 7e0a8a43d4..e01d0d57ea 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -194,7 +194,7 @@ class PeopleController < ActionController::Base
# This will pass with flying colors as long as there's a person key
# in the parameters, otherwise it'll raise a
- # ActionController::MissingParameter exception, which will get
+ # ActionController::ParameterMissing exception, which will get
# caught by ActionController::Base and turned into that 400 Bad
# Request reply.
def update