diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-04-14 09:27:19 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-04-14 09:27:19 +0200 |
commit | 97b5253a37eccf49ac2f9f4c5330801684312285 (patch) | |
tree | af6a8eb507052ae7f55f9a7a062efee52a599f8e /guides | |
parent | 6c002ba092f48136fe39908f40033d75b5bd46ac (diff) | |
parent | 0e9fab5ff5c43d6f1c6b0eb8d0b1f988b499ebef (diff) | |
download | rails-97b5253a37eccf49ac2f9f4c5330801684312285.tar.gz rails-97b5253a37eccf49ac2f9f4c5330801684312285.tar.bz2 rails-97b5253a37eccf49ac2f9f4c5330801684312285.zip |
Merge pull request #14739 from oysta/guide-fixes
Fix some inconsistent references between text and example code in getting started guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index bafb75c668..1ae7397696 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -612,7 +612,7 @@ def create end ``` -The `render` method here is taking a very simple hash with a key of `text` and +The `render` method here is taking a very simple hash with a key of `plain` and value of `params[:article].inspect`. The `params` method is the object which represents the parameters (or fields) coming in from the form. The `params` method returns an `ActiveSupport::HashWithIndifferentAccess` object, which @@ -1136,7 +1136,7 @@ The `method: :patch` option tells Rails that we want this form to be submitted via the `PATCH` HTTP method which is the HTTP method you're expected to use to **update** resources according to the REST protocol. -The first parameter of the `form_tag` can be an object, say, `@article` which would +The first parameter of `form_for` can be an object, say, `@article` which would cause the helper to fill in the form with the fields of the object. Passing in a symbol (`:article`) with the same name as the instance variable (`@article`) also automagically leads to the same behavior. This is what is happening here. More details |