Skip to content

Commit

Permalink
Fix missing space betweenn sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Aug 4, 2024
1 parent 59ebea7 commit 42aeac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ged2site
Original file line number Diff line number Diff line change
Expand Up @@ -6722,7 +6722,7 @@ sub print_person
$bio .= journey({ person => $person, arrival => $event, departure => $previous });
if($phrase->length()) {
push @phrases, $phrase;
$bio_dt->append(conjunction(map { $_->as_string() } @phrases))->append('.');
$bio_dt->append(conjunction(map { $_->as_string() } @phrases))->append('. ');
$phrase = Data::Text->new();
@phrases = ();
}
Expand Down

0 comments on commit 42aeac5

Please sign in to comment.