1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Missing 'are' in note - [ci skip]

This is in the note at the end of Section 2: Controller Naming Convention.  [ci skip]
This commit is contained in:
Afshin Mokhtari 2014-04-12 17:43:23 -07:00
parent 80d0dd53ca
commit 7782fdcf2b

View file

@ -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