aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-02-11 17:03:10 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-02-11 17:03:10 +0900
commit713cee01a5391b1ca56e25883c6c172ae59d7020 (patch)
tree3f1b270093ae211057d0aa8e174cf9926cfb837d /guides/source/action_controller_overview.md
parent825d70b4069df3411b77636c98ca668292bbc03a (diff)
downloadrails-713cee01a5391b1ca56e25883c6c172ae59d7020.tar.gz
rails-713cee01a5391b1ca56e25883c6c172ae59d7020.tar.bz2
rails-713cee01a5391b1ca56e25883c6c172ae59d7020.zip
Fix typo a -> an, an -> a [ci skip]
Diffstat (limited to 'guides/source/action_controller_overview.md')
-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 aa746e4731..d0d84251e4 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -212,7 +212,7 @@ class PeopleController < ActionController::Base
end
# This will pass with flying colors as long as there's a person key
- # in the parameters, otherwise it'll raise a
+ # in the parameters, otherwise it'll raise an
# ActionController::ParameterMissing exception, which will get
# caught by ActionController::Base and turned into a 400 Bad
# Request error.