It is 'registered', not 'registred'

This commit is contained in:
Matthias Clasen 2012-08-18 23:17:47 -04:00
parent e27367f341
commit 4a8740d0d2
2 changed files with 7 additions and 7 deletions

View File

@ -583,7 +583,7 @@ g_resources_unregister_unlocked (GResource *resource)
{ {
if (g_list_find (registered_resources, resource) == NULL) if (g_list_find (registered_resources, resource) == NULL)
{ {
g_warning ("Tried to remove not registred resource"); g_warning ("Tried to remove not registered resource");
} }
else else
{ {
@ -633,7 +633,7 @@ g_resources_unregister (GResource *resource)
* @error: return location for a #GError, or %NULL * @error: return location for a #GError, or %NULL
* *
* Looks for a file at the specified @path in the set of * Looks for a file at the specified @path in the set of
* globally registred resources and returns a #GInputStream * globally registered resources and returns a #GInputStream
* that lets you read the data. * that lets you read the data.
* *
* @lookup_flags controls the behaviour of the lookup. * @lookup_flags controls the behaviour of the lookup.
@ -693,7 +693,7 @@ g_resources_open_stream (const gchar *path,
* @error: return location for a #GError, or %NULL * @error: return location for a #GError, or %NULL
* *
* Looks for a file at the specified @path in the set of * Looks for a file at the specified @path in the set of
* globally registred resources and returns a #GBytes that * globally registered resources and returns a #GBytes that
* lets you directly access the data in memory. * lets you directly access the data in memory.
* *
* The data is always followed by a zero byte, so you * The data is always followed by a zero byte, so you
@ -762,7 +762,7 @@ g_resources_lookup_data (const gchar *path,
* @error: return location for a #GError, or %NULL * @error: return location for a #GError, or %NULL
* *
* Returns all the names of children at the specified @path in the set of * Returns all the names of children at the specified @path in the set of
* globally registred resources. * globally registered resources.
* The return result is a %NULL terminated list of strings which should * The return result is a %NULL terminated list of strings which should
* be released with g_strfreev(). * be released with g_strfreev().
* *
@ -843,7 +843,7 @@ g_resources_enumerate_children (const gchar *path,
* @error: return location for a #GError, or %NULL * @error: return location for a #GError, or %NULL
* *
* Looks for a file at the specified @path in the set of * Looks for a file at the specified @path in the set of
* globally registred resources and if found returns information about it. * globally registered resources and if found returns information about it.
* *
* @lookup_flags controls the behaviour of the lookup. * @lookup_flags controls the behaviour of the lookup.
* *
@ -1013,7 +1013,7 @@ g_static_resource_fini (GStaticResource *static_resource)
* g_static_resource_get_resource: * g_static_resource_get_resource:
* @static_resource: pointer to a static #GStaticResource * @static_resource: pointer to a static #GStaticResource
* *
* Gets the GResource that was registred by a call to g_static_resource_init(). * Gets the GResource that was registered by a call to g_static_resource_init().
* *
* This is normally used by code generated by * This is normally used by code generated by
* <link linkend="glib-compile-resources">glib-compile-resources</link> * <link linkend="glib-compile-resources">glib-compile-resources</link>

View File

@ -118,7 +118,7 @@ _g_param_type_init (void)
}; };
GType type; GType type;
/* This should be registred as GParamSpec instead of GParam, for /* This should be registered as GParamSpec instead of GParam, for
* consistency sake, so that type name can be mapped to struct name, * consistency sake, so that type name can be mapped to struct name,
* However, some language bindings, most noticeable the python ones * However, some language bindings, most noticeable the python ones
* depends on the "GParam" identifier, see #548689 * depends on the "GParam" identifier, see #548689