summaryrefslogtreecommitdiff
path: root/vala/valagenieparser.vala
diff options
context:
space:
mode:
Diffstat (limited to 'vala/valagenieparser.vala')
-rw-r--r--vala/valagenieparser.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valagenieparser.vala b/vala/valagenieparser.vala
index 57f041a5e..24c638492 100644
--- a/vala/valagenieparser.vala
+++ b/vala/valagenieparser.vala
@@ -2402,7 +2402,7 @@ public class Vala.Genie.Parser : CodeVisitor {
if (attributes != null) {
foreach (Attribute attr in (List<Attribute>) attributes) {
if (node.get_attribute (attr.name) != null) {
- Report.error (attr.source_reference, "duplicate attribute `%s`".printf (attr.name));
+ Report.error (attr.source_reference, "duplicate attribute `%s'".printf (attr.name));
}
node.attributes.append (attr);
}