Update some oddly-worded comments

This commit is contained in:
Sarah Mei 2011-09-08 11:55:29 -07:00
parent c5fbe1584a
commit 1363021859

View file

@ -27,8 +27,8 @@ class Person < ActiveRecord::Base
end end
has_many :contacts, :dependent => :destroy # Other people's contacts for this person has_many :contacts, :dependent => :destroy # Other people's contacts for this person
has_many :posts, :foreign_key => :author_id, :dependent => :destroy #his own posts has_many :posts, :foreign_key => :author_id, :dependent => :destroy # This person's own posts
has_many :comments, :foreign_key => :author_id, :dependent => :destroy #his own comments has_many :comments, :foreign_key => :author_id, :dependent => :destroy # This person's own comments
belongs_to :owner, :class_name => 'User' belongs_to :owner, :class_name => 'User'