gresource: fix a couple of typos in documentation

This commit is contained in:
Cosimo Cecchi 2015-06-11 15:56:25 -07:00
parent 1f0a11c59a
commit 0d6e200384

View File

@ -157,7 +157,7 @@ G_DEFINE_QUARK (g-resource-error-quark, g_resource_error)
* g_resource_ref: * g_resource_ref:
* @resource: A #GResource * @resource: A #GResource
* *
* Atomically increments the reference count of @array by one. This * Atomically increments the reference count of @resource by one. This
* function is MT-safe and may be called from any thread. * function is MT-safe and may be called from any thread.
* *
* Returns: The passed in #GResource * Returns: The passed in #GResource
@ -176,7 +176,7 @@ g_resource_ref (GResource *resource)
* @resource: A #GResource * @resource: A #GResource
* *
* Atomically decrements the reference count of @resource by one. If the * Atomically decrements the reference count of @resource by one. If the
* reference count drops to 0, all memory allocated by the array is * reference count drops to 0, all memory allocated by the resource is
* released. This function is MT-safe and may be called from any * released. This function is MT-safe and may be called from any
* thread. * thread.
* *