summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-14 21:33:36 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-14 21:33:36 -0500
commitbc6ee788b4ff6590513da6ab657448885e92b20b (patch)
treecf2905638d2466055d4cccd2807a2f6435925c54 /gmodule
parent450e7b1036fc95d41d6cb72d48824cd8b438037c (diff)
docs: let go of &ast;
Since we are no longer using sgml mode, using /&ast; &ast;/ to escape block comments inside examples does not work anymore. Switch to using line comments with //
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/gmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index 85d5c5484..bf1eac73e 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -80,7 +80,7 @@
*
* Example: Calling a function defined in a GModule
* |[<!-- language="C" -->
- * /&ast; the function signature for 'say_hello' &ast;/
+ * // the function signature for 'say_hello'
* typedef void (* SayHelloFunc) (const char *message);
*
* gboolean
@@ -115,7 +115,7 @@
* return FALSE;
* }
*
- * /&ast; call our function in the module &ast;/
+ * // call our function in the module
* say_hello ("Hello world!");
*
* if (!g_module_close (module))