Skip to content

Commit

Permalink
Fix copy and paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Nov 13, 2023
1 parent e005c85 commit 1f4bf2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gedcom
Original file line number Diff line number Diff line change
Expand Up @@ -2702,7 +2702,7 @@ sub print_person
}

if($relationship) {
if($aob && $aod) {
if($aob || $aod) {
$phrase->append(i18n('your'))->append(" $relationship, ");
} else {
$noun = $firstname // $pronoun;
Expand Down Expand Up @@ -8851,7 +8851,7 @@ sub year
my $start = $1;
my $end = $2;
if($end !~ /^\d\d\-\d\d$/) {
complain({ person => $person, warning => "Changing date '$rdate' to 'bet $start and $end'" });
complain({ warning => "Changing date '$string' to 'bet $start and $end'" });
$string = "bet $start and $end";
}
}
Expand Down

0 comments on commit 1f4bf2d

Please sign in to comment.