diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2013-03-16 11:08:01 +0300 |
---|---|---|
committer | Mikhail Dieterle <MikDiet@gmail.com> | 2013-03-16 11:08:01 +0300 |
commit | 387928c2348880c5801b422805a069e7c4910289 (patch) | |
tree | a8e26d1ee7739974971c6238149413ed71fead12 /guides | |
parent | 79af9e938f0265af748cca8816137536e0c723a6 (diff) | |
download | rails-387928c2348880c5801b422805a069e7c4910289.tar.gz rails-387928c2348880c5801b422805a069e7c4910289.tar.bz2 rails-387928c2348880c5801b422805a069e7c4910289.zip |
Capitalize first letter in sentence
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index d7a4a237ed..24cd12713c 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -850,7 +850,7 @@ resources :user_permissions, controller: 'admin/user_permissions' This will route to the `Admin::UserPermissions` controller. -NOTE: Only the directory notation is supported. specifying the +NOTE: Only the directory notation is supported. Specifying the controller with ruby constant notation (eg. `:controller => 'Admin::UserPermissions'`) can lead to routing problems and results in a warning. |