gst/gstobject.c: Fix typo in the gst_object_{ref,unref} documentation.

Original commit message from CVS:
* gst/gstobject.c:
Fix typo in the gst_object_{ref,unref} documentation.
This commit is contained in:
Sebastian Dröge 2007-12-22 12:48:26 +00:00
parent 55d6032d53
commit 43377772a6
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2007-12-22 Sebastian Dröge <slomo@circular-chaos.org>
* gst/gstobject.c:
Fix typo in the gst_object_{ref,unref} documentation.
2007-12-21 Tim-Philipp Müller <tim at centricular dot net> 2007-12-21 Tim-Philipp Müller <tim at centricular dot net>
* tests/check/libs/controller.c: * tests/check/libs/controller.c:

View file

@ -304,7 +304,7 @@ gst_object_init (GTypeInstance * instance, gpointer g_class)
* gst_object_ref: * gst_object_ref:
* @object: a #GstObject to reference * @object: a #GstObject to reference
* *
* Increments the refence count on @object. This function * Increments the reference count on @object. This function
* does not take the lock on @object because it relies on * does not take the lock on @object because it relies on
* atomic refcounting. * atomic refcounting.
* *
@ -333,7 +333,7 @@ gst_object_ref (gpointer object)
* gst_object_unref: * gst_object_unref:
* @object: a #GstObject to unreference * @object: a #GstObject to unreference
* *
* Decrements the refence count on @object. If reference count hits * Decrements the reference count on @object. If reference count hits
* zero, destroy @object. This function does not take the lock * zero, destroy @object. This function does not take the lock
* on @object as it relies on atomic refcounting. * on @object as it relies on atomic refcounting.
* *