src/jsdoc/Symbol.vala
authorAlan Knowles <alan@roojs.com>
Fri, 28 Apr 2017 08:59:44 +0000 (16:59 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 28 Apr 2017 08:59:44 +0000 (16:59 +0800)
src/jsdoc/Symbol.vala

index 57f69eb..7e9b942 100644 (file)
@@ -223,7 +223,9 @@ namespace JSDOC {
         void tagsFromComment() {
             // @author
             var authors = this.comment.getTag("author");
-            if (authors.length) {
+            if (authors.size) {
+                       // turns author into a string....
+                       
                 this.author = authors.map(function($){return $.desc;}).join(", ");
             }