spelling fixes to gst_library_load()

Original commit message from CVS:
spelling fixes to gst_library_load()
This commit is contained in:
Erik Walthinsen 2000-03-21 19:54:30 +00:00
parent 1f4d20f689
commit 7cf6883096

View file

@ -119,17 +119,18 @@ void gst_plugin_load_all() {
/** /**
* gst_library_load: * gst_library_load:
* @name: name of liabrary to load * @name: name of library to load
* *
* Load the named liabrary. Name should be given as * Load the named library. Name should be given as
* "libliabrary.so". * "liblibrary.so".
* *
* Returns: whether the liabrary was loaded or not * Returns: whether the library was loaded or not
*/ */
gboolean gst_library_load(gchar *name) { gboolean gst_library_load(gchar *name) {
// for now this is the same // for now this is the same
return gst_plugin_load(name); return gst_plugin_load(name);
} }
/** /**
* gst_plugin_load: * gst_plugin_load:
* @name: name of plugin to load * @name: name of plugin to load