summaryrefslogtreecommitdiff
path: root/girepository/ginvoke.c
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-05-19 13:53:48 -0300
committerJohan Dahlin <johan@gnome.org>2010-05-19 13:53:48 -0300
commit20122e9823dbeacd32abd0372d2f9a4ed98bf8c5 (patch)
tree45c5c9ccf5987bdf2da712fb2802f618f1e56a0a /girepository/ginvoke.c
parent39e36b1ccea2cc627e266f6f4c543dca930f8501 (diff)
downloadgobject-introspection-20122e9823dbeacd32abd0372d2f9a4ed98bf8c5.tar.gz
[docs] Reference g_module_open instead of dlopen
dlopen() is not cross platform, it's better to mention g_module_open everywhere as that's actually what we call internally.
Diffstat (limited to 'girepository/ginvoke.c')
-rw-r--r--girepository/ginvoke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/girepository/ginvoke.c b/girepository/ginvoke.c
index 2d4c3f56..bae8da4f 100644
--- a/girepository/ginvoke.c
+++ b/girepository/ginvoke.c
@@ -58,7 +58,7 @@ g_invoke_error_quark (void)
* argument lists. This function uses dlsym() to obtain a pointer
* to the function, so the library or shared object containing the
* described function must either be linked to the caller, or must
- * have been dlopen()<!-- -->ed before calling this function.
+ * have been g_module_symbol()<!-- -->ed before calling this function.
*
* Returns: %TRUE if the function has been invoked, %FALSE if an
* error occurred.