From: Sebastian Dröge Date: Sat, 22 Dec 2007 12:48:26 +0000 (+0000) Subject: gst/gstobject.c: Fix typo in the gst_object_{ref,unref} documentation. X-Git-Tag: RELEASE-0_10_16~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43377772a60b5cce019a3d2de6632820ff346912;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/ChangeLog b/ChangeLog index af92fe5..791bdd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-22 Sebastian Dröge + + * gst/gstobject.c: + Fix typo in the gst_object_{ref,unref} documentation. + 2007-12-21 Tim-Philipp Müller * tests/check/libs/controller.c: diff --git a/gst/gstobject.c b/gst/gstobject.c index fe5dd89..c33712d 100644 --- a/gst/gstobject.c +++ b/gst/gstobject.c @@ -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. *