Skip to content

Commit

Permalink
Fix double spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jun 15, 2024
1 parent ebf642e commit 676915b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -7373,12 +7373,13 @@ sub print_person
$phrase->append(" aussi o\N{U+00F9} " . lcfirst($pronoun));
} else {
if($end_of_sentence) {
$bio =~ s/\s$//;
$bio .= ' That';
} else {
$bio .= ', which';
}
if(scalar(@phrases) == 0) {
$phrase->set(' That');
$phrase->set('That');
} else {
$phrase->append(', which');
}
Expand Down

0 comments on commit 676915b

Please sign in to comment.