docs/manual/basics-elements.xml: Fix two typos.

Original commit message from CVS:
* docs/manual/basics-elements.xml:
Fix two typos.
This commit is contained in:
Ronald S. Bultje 2005-02-03 19:51:35 +00:00
parent 186d11b516
commit e050b8fd72
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* docs/manual/basics-elements.xml:
Fix two typos.
2005-02-02 Wim Taymans <wim@fluendo.com>
* gst/schedulers/gstoptimalscheduler.c: (remove_decoupled),

View file

@ -206,12 +206,12 @@ main (int argc,
/* create element, method #2 */
factory = gst_element_factory_find ("fakesrc");
if (!factory) {
g_print ("Failed to find fctory of type 'fakesrc'\n");
g_print ("Failed to find factory of type 'fakesrc'\n");
return -1;
}
element = gst_element_factory_create (factory, "source");
if (!element) {
g_print ("Failed to create element, even though it's factory exists!\n");
g_print ("Failed to create element, even though its factory exists!\n");
return -1;
}