s/retrive/retrieve/
authorjacob berkman <jacob@ximian.com>
Wed, 3 Oct 2001 19:45:04 +0000 (19:45 +0000)
committerJacob Berkman <jberkman@src.gnome.org>
Wed, 3 Oct 2001 19:45:04 +0000 (19:45 +0000)
2001-10-03  jacob berkman  <jacob@ximian.com>

* libgplugin_a.c: (gplugin_a_module_func):
* gmodule.h: s/retrive/retrieve/

gmodule/ChangeLog
gmodule/gmodule.h
gmodule/libgplugin_a.c

index 0c202b174182b8c6c8828325654a216b54942dbb..930ea4560d8ba7bd87fc6263698270247cf187b8 100644 (file)
@@ -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@.
index 2c335aba342a34a577c915acafccb819227ee983..819ba10860e3b2af9dedf632afb4f8c51b6e4a09 100644 (file)
@@ -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
index f285c8d84e3045c2fb8f307fc9753a7ab45195cf..2b07af054f8c83f8e656aeb08a9a0c60f618cfd5 100644 (file)
@@ -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))