diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2015-07-11 17:45:02 +0000 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2015-07-11 17:45:02 +0000 |
commit | 14354f195540954a1dfc5c954d06389c9f71e986 (patch) | |
tree | 5691ddaed5f08c3ba9e89b28e4353e3eacd9619c /guides | |
parent | b0506e2fc373f5f672c767d45398fe937c89c917 (diff) | |
parent | 0ad43eb70dc10de8d4fa253e87d0c0c0c93fb74e (diff) | |
download | rails-14354f195540954a1dfc5c954d06389c9f71e986.tar.gz rails-14354f195540954a1dfc5c954d06389c9f71e986.tar.bz2 rails-14354f195540954a1dfc5c954d06389c9f71e986.zip |
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 11051f71c2..400383cfb5 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -621,7 +621,7 @@ def create end ``` -The `render` method here is taking a very simple hash with a key of `plain` 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 |