diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-03-17 20:41:32 -0600 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-03-17 20:41:32 -0600 |
commit | ef0821bef68705e9702f7b0628823cfe591d087e (patch) | |
tree | 410277845009c707cef5f4c0f8030269810686a8 /guides | |
parent | b30cc24c40629f38d3de1be972a11eaaa67d20c2 (diff) | |
download | rails-ef0821bef68705e9702f7b0628823cfe591d087e.tar.gz rails-ef0821bef68705e9702f7b0628823cfe591d087e.tar.bz2 rails-ef0821bef68705e9702f7b0628823cfe591d087e.zip |
[getting started] Explain what the create action is accomplishing after params are output
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index 4edf772b77..fdae21caf2 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -383,7 +383,7 @@ If you re-submit the form one more time you'll now no longer get the missing tem {"title"=>"First post!", "text"=>"This is my first post."} </ruby> - +This action is now displaying the parameters for the post that are coming in from the form. However, this isn't really all that helpful. Yes, you can see the parameters but nothing in particular is being done with them. h4. Running a Migration |