diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-07-12 18:23:13 +0200 |
---|---|---|
committer | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-07-12 18:23:13 +0200 |
commit | cf69a010790d22dc2e66f172437c71ccff2e6366 (patch) | |
tree | 792b7be7610892c61d40d2fa9c9644d58a352bf9 | |
parent | 1dddc79fee290702ccef75834ab85fddf3a5fd8f (diff) | |
download | rails-cf69a010790d22dc2e66f172437c71ccff2e6366.tar.gz rails-cf69a010790d22dc2e66f172437c71ccff2e6366.tar.bz2 rails-cf69a010790d22dc2e66f172437c71ccff2e6366.zip |
Getting started guide: typos and changelog
-rw-r--r-- | railties/guides/source/getting_started.textile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 7a5266ce2c..3a4f16c3cd 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1193,7 +1193,7 @@ The +destroy+ action will find the post we are looking at, locate the comment wi h4. Deleting Associated Objects -If you delete a post then it's associated comments will also need to be deleted. Otherwise they would simply occupy space in the database. Rails allows you to use the +dependent+ option of an association to achieve this. Modify the Post model, +app/models/post.rb+, as follows: +If you delete a post then its associated comments will also need to be deleted. Otherwise they would simply occupy space in the database. Rails allows you to use the +dependent+ option of an association to achieve this. Modify the Post model, +app/models/post.rb+, as follows: <ruby> class Post < ActiveRecord::Base @@ -1485,6 +1485,7 @@ h3. Changelog "Lighthouse ticket":http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/2 +* July 12, 2010: Fixes, editing and updating of code samples by "Jaime Iniesta":http://jaimeiniesta.com * May 16, 2010: Added a section on configuration gotchas to address common encoding problems that people might have by "Yehuda Katz":http://www.yehudakatz.com * April 30, 2010: Fixes, editing and updating of code samples by "Rohit Arondekar":http://rohitarondekar.com * April 25, 2010: Couple of more minor fixups "Mikel Lindsaar":credits.html#raasdnil |