diff options
author | Afshin Mokhtari <afshinator@hotmail.com> | 2014-04-12 17:43:23 -0700 |
---|---|---|
committer | Afshin Mokhtari <afshinator@hotmail.com> | 2014-04-12 17:43:23 -0700 |
commit | 7782fdcf2b093d977f4cdcba884bcab07aad25ef (patch) | |
tree | cae315703b1affe8a2d3914b38d5a191bb0601ed | |
parent | 80d0dd53caeb55dffcbf3e86b3707d170899f035 (diff) | |
download | rails-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]
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
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 |