[vala/wip/dbusgen: 61/71] Fix comment style



commit 127cc5c19b94073013787da70e1447c87191e307
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Sat Nov 25 23:35:30 2017 +0100

    Fix comment style

 dbusgen/valadbusparser.vala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/dbusgen/valadbusparser.vala b/dbusgen/valadbusparser.vala
index 0def2b17b..46dc80b35 100644
--- a/dbusgen/valadbusparser.vala
+++ b/dbusgen/valadbusparser.vala
@@ -378,7 +378,7 @@ public class Vala.DBusParser : CodeVisitor {
 
                        if (current_token == MarkupTokenType.TEXT) {
                                foreach (string line in reader.content.split ("\n")) {
-                                       comment += " * %s \n".printf (line.strip ());
+                                       comment += " * %s\n".printf (line.strip ());
                                }
                        }
 
@@ -388,7 +388,7 @@ public class Vala.DBusParser : CodeVisitor {
                }
 
                if (comment.length > 0) {
-                       comment = "*\n%s*".printf (comment);
+                       comment = "*\n%s".printf (comment);
                        Comment doc = new Comment (comment, start_loc);
                        Symbol node = current_node as Symbol;
                        if (node != null) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]