From: Andrea Del Signore Date: Thu, 3 Nov 2016 22:01:00 +0000 (+0100) Subject: girwriter: Use the correct tag- and element-name for an annotation X-Git-Tag: 0.35.1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bb9b1c691bbe175d3e2ddee4bcc1146d8ae2c4c;p=thirdparty%2Fvala.git girwriter: Use the correct tag- and element-name for an annotation The correct syntax is https://bugzilla.gnome.org/show_bug.cgi?id=769597 --- diff --git a/codegen/valagirwriter.vala b/codegen/valagirwriter.vala index 4d361f50d..302f8aee6 100644 --- a/codegen/valagirwriter.vala +++ b/codegen/valagirwriter.vala @@ -1373,7 +1373,7 @@ public class Vala.GIRWriter : CodeVisitor { } write_indent (); - buffer.append_printf ("\n", + buffer.append_printf ("\n", name, camel_case_to_canonical (arg_name), value); } }