diff options
author | Richard Schneeman <richard.schneeman@gmail.com> | 2014-04-12 20:16:45 -0500 |
---|---|---|
committer | Richard Schneeman <richard.schneeman@gmail.com> | 2014-04-12 20:16:45 -0500 |
commit | 47d9321a1ee88368cc24de7cad5f42a28066d1a0 (patch) | |
tree | cae315703b1affe8a2d3914b38d5a191bb0601ed /guides/source | |
parent | 80d0dd53caeb55dffcbf3e86b3707d170899f035 (diff) | |
parent | 7782fdcf2b093d977f4cdcba884bcab07aad25ef (diff) | |
download | rails-47d9321a1ee88368cc24de7cad5f42a28066d1a0.tar.gz rails-47d9321a1ee88368cc24de7cad5f42a28066d1a0.tar.bz2 rails-47d9321a1ee88368cc24de7cad5f42a28066d1a0.zip |
Merge pull request #14725 from afshinator/patch-1
Missing 'are' in note - [ci skip]
Diffstat (limited to 'guides/source')
-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 |