diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-14 09:40:11 -0800 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-14 09:40:11 -0800 |
commit | badcd7bb00a251c23fa59666c0970f8cff0f6cb2 (patch) | |
tree | cc83d8b634d5607a6281c4376af46bdac2f8f100 /guides/source/form_helpers.md | |
parent | 068237d02f2ffa1cae6f83ab2dedf821e5455ee5 (diff) | |
parent | e10f91000be7e67e7fa6768088f381668d81be05 (diff) | |
download | rails-badcd7bb00a251c23fa59666c0970f8cff0f6cb2.tar.gz rails-badcd7bb00a251c23fa59666c0970f8cff0f6cb2.tar.bz2 rails-badcd7bb00a251c23fa59666c0970f8cff0f6cb2.zip |
Merge pull request #13325 from kuldeepaggarwal/docs-update
Improved documents [ci skip]
Diffstat (limited to 'guides/source/form_helpers.md')
-rw-r--r-- | guides/source/form_helpers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md index e8279b9c0c..ec4a255398 100644 --- a/guides/source/form_helpers.md +++ b/guides/source/form_helpers.md @@ -342,7 +342,7 @@ If you have created namespaced routes, `form_for` has a nifty shorthand for that form_for [:admin, @article] ``` -will create a form that submits to the articles controller inside the admin namespace (submitting to `admin_article_path(@article)` in the case of an update). If you have several levels of namespacing then the syntax is similar: +will create a form that submits to the `ArticlesController` inside the admin namespace (submitting to `admin_article_path(@article)` in the case of an update). If you have several levels of namespacing then the syntax is similar: ```ruby form_for [:admin, :management, @article] |