src/jsdoc/Symbol.vala
authorAlan Knowles <alan@roojs.com>
Wed, 11 Jul 2018 14:03:40 +0000 (22:03 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 11 Jul 2018 14:03:40 +0000 (22:03 +0800)
src/jsdoc/Symbol.vala

index 7e9b942..319c5b4 100644 (file)
@@ -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