gst/gstobject.c: Fix typo in the gst_object_{ref,unref} documentation.
authorSebastian Dröge <slomo@circular-chaos.org>
Sat, 22 Dec 2007 12:48:26 +0000 (12:48 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Sat, 22 Dec 2007 12:48:26 +0000 (12:48 +0000)
Original commit message from CVS:
* gst/gstobject.c:
Fix typo in the gst_object_{ref,unref} documentation.

ChangeLog
gst/gstobject.c

index af92fe5..791bdd4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * tests/check/libs/controller.c:
index fe5dd89..c33712d 100644 (file)
@@ -304,7 +304,7 @@ gst_object_init (GTypeInstance * instance, gpointer g_class)
  * gst_object_ref:
  * @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
  * atomic refcounting.
  *
@@ -333,7 +333,7 @@ gst_object_ref (gpointer object)
  * gst_object_unref:
  * @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
  * on @object as it relies on atomic refcounting.
  *