Spelling fix

Original commit message from CVS:
Spelling fix
This commit is contained in:
Johan Dahlin 2004-02-16 18:13:21 +00:00
parent 55f6bc6ea5
commit 4eedbdb4ef
4 changed files with 4 additions and 4 deletions

View file

@ -911,7 +911,7 @@ gst_xml_registry_start_element (GMarkupParseContext *context,
xmlregistry->parser = gst_xml_registry_parse_index_factory; xmlregistry->parser = gst_xml_registry_parse_index_factory;
} }
else { else {
g_warning ("unkown feature type"); g_warning ("unknown feature type");
} }
} }
} }

View file

@ -29,7 +29,7 @@ main (gint argc, gchar *argv[])
caps = GST_CAPS_NEW ( caps = GST_CAPS_NEW (
"testcaps", "testcaps",
"unkown/unknown", "unknown/unknown",
NULL); NULL);
/* newly crrated caps without props is fixed */ /* newly crrated caps without props is fixed */

View file

@ -29,7 +29,7 @@ main (gint argc, gchar *argv[])
caps = GST_CAPS_NEW ( caps = GST_CAPS_NEW (
"testcaps", "testcaps",
"unkown/unknown", "unknown/unknown",
NULL); NULL);
/* newly crrated caps without props is fixed */ /* newly crrated caps without props is fixed */

View file

@ -87,7 +87,7 @@ print_query_types (const GstQueryType *types, gint pfx)
PUT_STRING (pfx, "<query-type id=\"%d\" nick=\"%s\">%s</query-type>", PUT_STRING (pfx, "<query-type id=\"%d\" nick=\"%s\">%s</query-type>",
*types, definition->nick, definition->description); *types, definition->nick, definition->description);
else else
PUT_STRING (pfx, "<query-type id=\"%d\">unkown</query-type>", PUT_STRING (pfx, "<query-type id=\"%d\">unknown</query-type>",
*types); *types);
types++; types++;