[vala/wip/dbusgen: 14/15] Fix comment style
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/wip/dbusgen: 14/15] Fix comment style
- Date: Mon, 27 Nov 2017 07:21:23 +0000 (UTC)
commit 746834c6480ef7ecdbfe0d524de2624e5cc6c571
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Sat Nov 25 23:35:30 2017 +0100
Fix comment style
dbusgen/valadbusparser.vala | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/dbusgen/valadbusparser.vala b/dbusgen/valadbusparser.vala
index 8b0268e..d71549a 100644
--- a/dbusgen/valadbusparser.vala
+++ b/dbusgen/valadbusparser.vala
@@ -380,7 +380,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 ());
}
}
@@ -390,7 +390,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]