summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorjacob berkman <jacob@ximian.com>2001-10-03 19:45:04 +0000
committerJacob Berkman <jberkman@src.gnome.org>2001-10-03 19:45:04 +0000
commit484614634c3582e60e4de502e31936361b337ee8 (patch)
treeaa19c9bfe417bd7319f9b0fbb44cdfeea19f6aac /gmodule
parentd761fb4b3b8347e8fea51a40269031ed4ec1a303 (diff)
s/retrive/retrieve/
2001-10-03 jacob berkman <jacob@ximian.com> * libgplugin_a.c: (gplugin_a_module_func): * gmodule.h: s/retrive/retrieve/
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/ChangeLog5
-rw-r--r--gmodule/gmodule.h4
-rw-r--r--gmodule/libgplugin_a.c2
3 files changed, 8 insertions, 3 deletions
diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog
index 0c202b174..930ea4560 100644
--- a/gmodule/ChangeLog
+++ b/gmodule/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-03 jacob berkman <jacob@ximian.com>
+
+ * libgplugin_a.c: (gplugin_a_module_func):
+ * gmodule.h: s/retrive/retrieve/
+
2001-09-25 Tor Lillqvist <tml@iki.fi>
* makefile.mingw.in: Fix missing end @ in @LT_CURRENT@.
diff --git a/gmodule/gmodule.h b/gmodule/gmodule.h
index 2c335aba3..819ba1086 100644
--- a/gmodule/gmodule.h
+++ b/gmodule/gmodule.h
@@ -67,12 +67,12 @@ void g_module_make_resident (GModule *module);
/* query the last module error as a string */
G_CONST_RETURN gchar* g_module_error (void);
-/* retrive a symbol pointer from `module', returns TRUE on success */
+/* retrieve a symbol pointer from `module', returns TRUE on success */
gboolean g_module_symbol (GModule *module,
const gchar *symbol_name,
gpointer *symbol);
-/* retrive the file name from an existing module */
+/* retrieve the file name from an existing module */
G_CONST_RETURN gchar* g_module_name (GModule *module);
/* Build the actual file name containing a module. `directory' is the
diff --git a/gmodule/libgplugin_a.c b/gmodule/libgplugin_a.c
index f285c8d84..2b07af054 100644
--- a/gmodule/libgplugin_a.c
+++ b/gmodule/libgplugin_a.c
@@ -59,7 +59,7 @@ gplugin_a_module_func (GModule *module)
gchar *basename = g_path_get_basename (g_module_name (module));
string = "gplugin_say_boo_func";
- g_print ("GPluginA: retrive symbol `%s' from \"%s\"\n",
+ g_print ("GPluginA: retrieve symbol `%s' from \"%s\"\n",
string, basename);
g_free (basename);
if (!g_module_symbol (module, string, (gpointer) &f))