diff options
author | Michael Groeneman <michael@groeneman.com> | 2016-02-23 16:28:55 -0800 |
---|---|---|
committer | Michael Groeneman <michael@groeneman.com> | 2016-02-23 16:29:42 -0800 |
commit | 43edcc6c8faa96d91f9f5abb46af31f93ee17738 (patch) | |
tree | 70d6f29f1f4fbe3c3e98b60a3d9a468f6d111878 /guides | |
parent | 3ea7d02ee6b79ed04c4ab60885ca512d6dc6dc11 (diff) | |
download | rails-43edcc6c8faa96d91f9f5abb46af31f93ee17738.tar.gz rails-43edcc6c8faa96d91f9f5abb46af31f93ee17738.tar.bz2 rails-43edcc6c8faa96d91f9f5abb46af31f93ee17738.zip |
[ci skip] No hyphen in 'side effects'
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 2c1c279606..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-effects. 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: |