diff options
author | Jonathan Roes <jroes@jroes.net> | 2012-04-26 15:47:48 -0300 |
---|---|---|
committer | Jonathan Roes <jroes@jroes.net> | 2012-04-26 15:47:48 -0300 |
commit | 8bf97d1a845385290f20f76ea1256712c2c4735e (patch) | |
tree | 95e14760549340c2e2f8a5c54eaea04af0befbb4 | |
parent | 2497fd90f45231c969d8fab772ebcaa252a288c6 (diff) | |
download | rails-8bf97d1a845385290f20f76ea1256712c2c4735e.tar.gz rails-8bf97d1a845385290f20f76ea1256712c2c4735e.tar.bz2 rails-8bf97d1a845385290f20f76ea1256712c2c4735e.zip |
Minor typo.
-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 fae12f825d..d2127b973d 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -465,7 +465,7 @@ invoking the command: <tt>rake db:migrate RAILS_ENV=production</tt>. h4. Saving data in the controller -Back into +posts_controller+, we need to change the +create+ action +Back in +posts_controller+, we need to change the +create+ action to use the new +Post+ model to save data in the database. Open that file and change the +create+ action to look like the following: |