oof, typo

This commit is contained in:
Andrew Brown 2019-12-22 18:17:20 -06:00
parent 6b7a61398d
commit cdcd7ee75d
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class Document < ApplicationRecord
end
def universe_field_value
#todo when documents belong to a universe
# TODO: populate value from cache when documents belong to a universe
end
def analyze!

View File

@ -16,7 +16,7 @@ class Marriage < ApplicationRecord
this_object = Character.find_by(id: self.character_id)
other_object = Character.find_by(id: self.spouse_id)
other_object.spouses.delete(this_object) if other_object.present? && this.object.present?
other_object.spouses.delete(this_object) if other_object.present? && this_object.present?
end
#todo "active" marriage?