Skip to content

Commit

Permalink
changed typo in italian list of 2 HPOs, and -> e
Browse files Browse the repository at this point in the history
  • Loading branch information
leokim-l committed Jun 10, 2024
1 parent 5ff4cd8 commit 8c5bba8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private String getOxfordCommaList(List<String> items) {
if (items.size() == 2) {
// no comma if we just have two items.
// one item will work with the below code
return String.join(" and ", items);
return String.join(" e ", items);
}
String symList = String.join(", ", items);
int jj = symList.lastIndexOf(", ");
Expand Down

0 comments on commit 8c5bba8

Please sign in to comment.