mono-docs: Escape the recently added docs

This is the second time I forget...
This commit is contained in:
Xavi Artigas 2019-08-02 16:15:20 +02:00
parent e4a2e7cb55
commit 6764535aae
1 changed files with 2 additions and 2 deletions

View File

@ -253,10 +253,10 @@ struct event_argument_wrapper_generator
<< "[Efl.Eo.BindingEntity]\n"
<< "public class " << name_helpers::managed_event_args_short_name(evt) << " : EventArgs {\n"
<< scope_tab << "/// <summary>Actual event payload.</summary>\n"
<< scope_tab << "/// <value>" << evt.documentation.summary << "</value>\n"
<< scope_tab << "/// <value>" << documentation_string << "</value>\n"
<< scope_tab << "public " << type << " arg { get; set; }\n"
<< "}\n"
).generate(sink, *etype, context);
).generate(sink, std::make_tuple(evt.documentation.summary, *etype), context);
}
} const event_argument_wrapper {};