docs/manual/basics-elements.xml: Fix two typos.
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Thu, 3 Feb 2005 19:51:35 +0000 (19:51 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Thu, 3 Feb 2005 19:51:35 +0000 (19:51 +0000)
Original commit message from CVS:
* docs/manual/basics-elements.xml:
Fix two typos.

ChangeLog
docs/manual/basics-elements.xml

index b4f8358..24c1bb9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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),
index ba0e911..23ef63d 100644 (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;
   }