summaryrefslogtreecommitdiff
path: root/gir/gmodule-2.0.c
diff options
context:
space:
mode:
Diffstat (limited to 'gir/gmodule-2.0.c')
-rw-r--r--gir/gmodule-2.0.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gir/gmodule-2.0.c b/gir/gmodule-2.0.c
index 83fd6a92..c1a66a55 100644
--- a/gir/gmodule-2.0.c
+++ b/gir/gmodule-2.0.c
@@ -6,8 +6,8 @@
* GModule:
*
* The #GModule struct is an opaque data structure to represent a
- * <link linkend="glib-Dynamic-Loading-of-Modules">Dynamically-Loaded
- * Module</link>. It should only be accessed via the following functions.
+ * [dynamically-loaded module][glib-Dynamic-Loading-of-Modules].
+ * It should only be accessed via the following functions.
*/
@@ -111,7 +111,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
@@ -146,7 +146,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))