summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-05 20:17:46 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-05 20:17:46 -0500
commit0cc20b7e0b8376a1b7c14a1a712d1f22a8c0eac0 (patch)
tree9c226ebd2e7f5c1f08bdae57d60f10da4331eca9 /gmodule
parent111803030d54b192ca1edd25bbde90130eaff2a9 (diff)
Don't use <filename> in docs
Switch to simpler markdown, `foo`.
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/gmodule.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index bacb2df5e..f6db3a53d 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -891,8 +891,8 @@ g_module_name (GModule *module)
/**
* g_module_build_path:
- * @directory: (allow-none): the directory where the module is. This can be %NULL
- * or the empty string to indicate that the standard platform-specific
+ * @directory: (allow-none): the directory where the module is. This can be
+ * %NULL or the empty string to indicate that the standard platform-specific
* directories will be used, though that is not recommended
* @module_name: the name of the module
*
@@ -906,10 +906,9 @@ g_module_name (GModule *module)
* since the wrong module may be found.
*
* For example, calling g_module_build_path() on a Linux system with a
- * @directory of <filename>/lib</filename> and a @module_name of "mylibrary"
- * will return <filename>/lib/libmylibrary.so</filename>. On a Windows system,
- * using <filename>\Windows</filename> as the directory it will return
- * <filename>\Windows\mylibrary.dll</filename>.
+ * @directory of `/lib` and a @module_name of "mylibrary" will return
+ * `/lib/libmylibrary.so`. On a Windows system, using `\Windows` as the
+ * directory it will return `\Windows\mylibrary.dll`.
*
* Returns: the complete path of the module, including the standard library
* prefix and suffix. This should be freed when no longer needed