Skip to content

Commit 04c329c

Browse files
style: Oxford style with comma before last author
1 parent 234f551 commit 04c329c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/publications.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function renderAuthors(authors) {
2323
} else {
2424
for (let i = 0; i < author_count; i++) {
2525
if (i === author_count - 1) {
26-
author_string += ` and ${authors[i]}`;
26+
author_string += `, and ${authors[i]}`;
2727
} else if (i === 0) {
2828
author_string += authors[i];
2929
} else {

0 commit comments

Comments
 (0)