diff --git a/app/helpers/apa_helper.rb b/app/helpers/apa_helper.rb index a4a1b0ab7..828130252 100644 --- a/app/helpers/apa_helper.rb +++ b/app/helpers/apa_helper.rb @@ -12,7 +12,7 @@ def authors_in_apa_format(article) article.authors.split(',').map do |author| names = author.split last_name = names.shift.capitalize_all - first_name = names.map(&:first).join('. ') + first_name = names.map(&:first).join('. ') "#{last_name}, #{first_name}" end.join(' & ') end