diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-02-23 20:01:54 -0500 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-02-23 20:01:54 -0500 |
commit | f6e5b6075f0b02400c066c0630822be8785742f3 (patch) | |
tree | b5adc3037b5e3fb021cad8c06dbfa76829eed50c /guides | |
parent | 52bcbde60d101536d531337b9edb83a94604bc74 (diff) | |
parent | 43edcc6c8faa96d91f9f5abb46af31f93ee17738 (diff) | |
download | rails-f6e5b6075f0b02400c066c0630822be8785742f3.tar.gz rails-f6e5b6075f0b02400c066c0630822be8785742f3.tar.bz2 rails-f6e5b6075f0b02400c066c0630822be8785742f3.zip |
Merge pull request #23837 from mgroeneman/fix-form-helper-guide-typo
Fix typo in Form Helpers Guide
Diffstat (limited to 'guides')
-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 2a289dd33a..422bc647ef 100644 --- a/guides/source/form_helpers.md +++ b/guides/source/form_helpers.md @@ -317,7 +317,7 @@ The Article model is directly available to users of the application, so - follow resources :articles ``` -TIP: Declaring a resource has a number of side-affects. See [Rails Routing From the Outside In](routing.html#resource-routing-the-rails-default) for more information on setting up and using resources. +TIP: Declaring a resource has a number of side effects. See [Rails Routing From the Outside In](routing.html#resource-routing-the-rails-default) for more information on setting up and using resources. When dealing with RESTful resources, calls to `form_for` can get significantly easier if you rely on **record identification**. In short, you can just pass the model instance and have Rails figure out model name and the rest: |