diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-09-26 09:02:19 -0700 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-09-26 09:02:19 -0700 |
commit | d1a7071f1525276a837ae855ea839a7e746e33da (patch) | |
tree | fe1e4baae79506bdb3177c2865c72cd9009d87d2 /guides/source | |
parent | 400ad8e5cc6600e2514a414df75f5f79850b7ce3 (diff) | |
parent | ead0c9a7e56a76c71ff18050032d1ca67b4c327a (diff) | |
download | rails-d1a7071f1525276a837ae855ea839a7e746e33da.tar.gz rails-d1a7071f1525276a837ae855ea839a7e746e33da.tar.bz2 rails-d1a7071f1525276a837ae855ea839a7e746e33da.zip |
Merge pull request #12373 from francisgo/patch-6
Getting Started Guide: post.rb -> Post [ci skip]
Diffstat (limited to 'guides/source')
-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 60e3f449e7..e7556111f8 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1338,7 +1338,7 @@ class Comment < ActiveRecord::Base end ``` -This is very similar to the `post.rb` model that you saw earlier. The difference +This is very similar to the `Post` model that you saw earlier. The difference is the line `belongs_to :post`, which sets up an Active Record _association_. You'll learn a little about associations in the next section of this guide. |