From 1363021859814d52fc69285dce2fb86ccafcdea7 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Thu, 8 Sep 2011 11:55:29 -0700 Subject: [PATCH] Update some oddly-worded comments --- app/models/person.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/models/person.rb b/app/models/person.rb index 4fa188302..3d5cba140 100644 --- a/app/models/person.rb +++ b/app/models/person.rb @@ -26,9 +26,9 @@ class Person < ActiveRecord::Base diaspora_handle.downcase! unless diaspora_handle.blank? end - 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 :comments, :foreign_key => :author_id, :dependent => :destroy #his own comments + has_many :contacts, :dependent => :destroy # Other people's contacts for this person + has_many :posts, :foreign_key => :author_id, :dependent => :destroy # This person's own posts + has_many :comments, :foreign_key => :author_id, :dependent => :destroy # This person's own comments belongs_to :owner, :class_name => 'User'