diff --git a/ChangeLog b/ChangeLog index d14bbcf0a5..312f817f15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-03 Stefan Kost + + * gst/gstplugin.c: + Fix docs that mention 'plugin_desc' instead of 'gst_plugin_desc'. + Spotted by Josep Torra Valles . + 2007-10-03 Tim-Philipp Müller * gst/gstclock.h: diff --git a/gst/gstplugin.c b/gst/gstplugin.c index c11faeb1cc..a0d25b0b6d 100644 --- a/gst/gstplugin.c +++ b/gst/gstplugin.c @@ -29,11 +29,12 @@ * A plugin system can provide one or more of the basic * GStreamer #GstPluginFeature subclasses. * - * A plugin should export a symbol plugin_desc that is a + * A plugin should export a symbol gst_plugin_desc that is a * struct of type #GstPluginDesc. * the plugin loader will check the version of the core library the plugin was * linked against and will create a new #GstPlugin. It will then call the - * #GstPluginInitFunc function that was provided in the plugin_desc. + * #GstPluginInitFunc function that was provided in the + * gst_plugin_desc. * * Once you have a handle to a #GstPlugin (e.g. from the #GstRegistryPool), you * can add any object that subclasses #GstPluginFeature.