docs: Remove XML-style comments from documentation strings

gtk-doc doesn’t support them any more since it was ported to Markdown,
so they end up appearing in the generated documentation, which isn’t
great.

Mostly, they were used to split up things invisibly, which we can do in
other ways.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
Reviewed-by: nobody
This commit is contained in:
Philip Withnall
2018-01-12 15:29:29 +00:00
parent d3b07453ab
commit e430541378
8 changed files with 12 additions and 12 deletions

View File

@@ -2597,9 +2597,9 @@
*
* membuf = g_malloc (8192);
*
* /<!-- -->* Some computation on membuf *<!-- -->/
* // Some computation on membuf
*
* /<!-- -->* membuf will be automatically freed here *<!-- -->/
* // membuf will be automatically freed here
* return TRUE;
* }
* ]|