aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorAfshin Mokhtari <afshinator@hotmail.com>2014-04-12 17:43:23 -0700
committerAfshin Mokhtari <afshinator@hotmail.com>2014-04-12 17:43:23 -0700
commit7782fdcf2b093d977f4cdcba884bcab07aad25ef (patch)
treecae315703b1affe8a2d3914b38d5a191bb0601ed /guides/source/action_controller_overview.md
parent80d0dd53caeb55dffcbf3e86b3707d170899f035 (diff)
downloadrails-7782fdcf2b093d977f4cdcba884bcab07aad25ef.tar.gz
rails-7782fdcf2b093d977f4cdcba884bcab07aad25ef.tar.bz2
rails-7782fdcf2b093d977f4cdcba884bcab07aad25ef.zip
Missing 'are' in note - [ci skip]
This is in the note at the end of Section 2: Controller Naming Convention. [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 0f46ba8698..d788d13ac9 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -34,7 +34,7 @@ The naming convention of controllers in Rails favors pluralization of the last w
Following this convention will allow you to use the default route generators (e.g. `resources`, etc) without needing to qualify each `:path` or `:controller`, and keeps URL and path helpers' usage consistent throughout your application. See [Layouts & Rendering Guide](layouts_and_rendering.html) for more details.
-NOTE: The controller naming convention differs from the naming convention of models, which expected to be named in singular form.
+NOTE: The controller naming convention differs from the naming convention of models, which are expected to be named in singular form.
Methods and Actions