diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-09-02 13:50:43 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-02 13:50:43 +0530 |
commit | 839d7140de949ba8acc2c20f7853ead20b643a05 (patch) | |
tree | 02a52357f21ad99f2fa094a9026a3eb728195ada | |
parent | 8697ce4dba9a4faa8b31543dabf90c94cd186984 (diff) | |
parent | 24d00d229e221717c624fdafcbb94d792f04b511 (diff) | |
download | rails-839d7140de949ba8acc2c20f7853ead20b643a05.tar.gz rails-839d7140de949ba8acc2c20f7853ead20b643a05.tar.bz2 rails-839d7140de949ba8acc2c20f7853ead20b643a05.zip |
Merge pull request #26365 from riseshia/patch-1
Improve Getting Started [ci skip]
-rw-r--r-- | guides/source/getting_started.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index c4a8eacc57..31d5c4f71d 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -633,8 +633,7 @@ this situation, the only parameters that matter are the ones from the form. TIP: Ensure you have a firm grasp of the `params` method, as you'll use it fairly regularly. Let's consider an example URL: **http://www.example.com/?username=dhh&email=dhh@email.com**. In this URL, `params[:username]` would equal "dhh" and `params[:email]` would equal "dhh@email.com". -If you re-submit the form one more time you'll now no longer get the missing -template error. Instead, you'll see something that looks like the following: +If you re-submit the form one more time, you'll see something that looks like the following: ```ruby <ActionController::Parameters {"title"=>"First Article!", "text"=>"This is my first article."} permitted: false> |