From dafde2ed6624c93330f7a70e4c8d70d0793ac4cc Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Tue, 14 Apr 2009 22:32:21 +0300 Subject: [PATCH] docs: use real tags as they look nice in new gtk-doc --- gst/gstclock.h | 8 ++++---- gst/gstparamspecs.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gst/gstclock.h b/gst/gstclock.h index 2092000cbb..4ce1bcd603 100644 --- a/gst/gstclock.h +++ b/gst/gstclock.h @@ -167,11 +167,11 @@ typedef gpointer GstClockID; * @t: The #GstClockTime to convert * @tv: The target timeval * - * Note: on 32-bit systems, a timeval has a range of only 2^32 - 1 seconds, - * which is about 68 years. Expect trouble if you want to schedule stuff - * in your pipeline for 2038. - * * Convert a #GstClockTime to a #GTimeVal + * + * on 32-bit systems, a timeval has a range of only 2^32 - 1 seconds, + * which is about 68 years. Expect trouble if you want to schedule stuff + * in your pipeline for 2038. */ #define GST_TIME_TO_TIMEVAL(t,tv) \ G_STMT_START { \ diff --git a/gst/gstparamspecs.c b/gst/gstparamspecs.c index eccfca2b2a..ec5365f08d 100644 --- a/gst/gstparamspecs.c +++ b/gst/gstparamspecs.c @@ -216,10 +216,10 @@ gst_param_spec_fraction (const gchar * name, const gchar * nick, * avoid races, this function should be called with the object lock * of @element held. * - * Note: By the time this method returns, the state of the element might have + * By the time this method returns, the state of the element might have * changed already. Use this method only if you can control the state of the * element between calling this method and setting the property, such as with a - * mutex. + * mutex. * * Returns: TRUE if the property may be modified *