From 68bce8af04fd725349fb13840953381a78b95450 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 11 Jul 2018 22:03:40 +0800 Subject: [PATCH] src/jsdoc/Symbol.vala --- src/jsdoc/Symbol.vala | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/jsdoc/Symbol.vala b/src/jsdoc/Symbol.vala index 7e9b942..319c5b4 100644 --- a/src/jsdoc/Symbol.vala +++ b/src/jsdoc/Symbol.vala @@ -225,8 +225,11 @@ namespace JSDOC { var authors = this.comment.getTag("author"); if (authors.size) { // turns author into a string.... - - this.author = authors.map(function($){return $.desc;}).join(", "); + this.author = ""; + foreach(authors as a) { + this.author += (this.author == "") ? "": ", "; + this.author += a.desc; + } } /*~t -- 2.39.2