diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-09-26 05:13:20 -0700 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-09-26 05:13:20 -0700 |
commit | 3f2ebf2b0691af7ed7758bfd3c197261fbd7bc03 (patch) | |
tree | 4f0777eaa51d7b4af2df437a5b84ecb344d04862 | |
parent | 66c300cc0ee1ec5f33cabd20676d746ce1185ad2 (diff) | |
parent | f2f84cdddd124c289c004f9612f7cd3280eeae86 (diff) | |
download | rails-3f2ebf2b0691af7ed7758bfd3c197261fbd7bc03.tar.gz rails-3f2ebf2b0691af7ed7758bfd3c197261fbd7bc03.tar.bz2 rails-3f2ebf2b0691af7ed7758bfd3c197261fbd7bc03.zip |
Merge pull request #12356 from francisgo/patch-3
Getting Started Guide: posts_controller -> PostsController [ci skip]
-rw-r--r-- | guides/source/getting_started.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index d3d3f4eea4..60e3f449e7 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -687,7 +687,7 @@ invoking the command: `rake db:migrate RAILS_ENV=production`. ### Saving data in the controller -Back in `posts_controller`, we need to change the `create` action +Back in `PostsController`, we need to change the `create` action to use the new `Post` model to save the data in the database. Open `app/controllers/posts_controller.rb` and change the `create` action to look like this: @@ -1013,7 +1013,7 @@ errors with `@post.errors.full_messages`. arguments. If the number is greater than one, the string will be automatically pluralized. -The reason why we added `@post = Post.new` in `posts_controller` is that +The reason why we added `@post = Post.new` in the `PostsController` is that otherwise `@post` would be `nil` in our view, and calling `@post.errors.any?` would throw an error. @@ -1031,7 +1031,7 @@ attempt to do just that on the new post form [(http://localhost:3000/posts/new)] We've covered the "CR" part of CRUD. Now let's focus on the "U" part, updating posts. -The first step we'll take is adding an `edit` action to `posts_controller`. +The first step we'll take is adding an `edit` action to the `PostsController`. ```ruby def edit |