[glib] Fix a markup confusion



commit c20f3b239cd37733df1b68f113fdc17621cc3157
Author: Matthias Clasen <mclasen redhat com>
Date:   Fri Jun 5 11:30:17 2015 -0400

    Fix a markup confusion
    
    "0." at the beginning of a line is interpreted as a numeric list
    by the gtk-doc markdown parser, so be careful to avoid that.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=750399

 glib/gdate.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/glib/gdate.c b/glib/gdate.c
index 670f7aa..2e4d52f 100644
--- a/glib/gdate.c
+++ b/glib/gdate.c
@@ -698,8 +698,8 @@ g_date_get_day_of_year (const GDate *d)
  * @date: a #GDate
  *
  * Returns the week of the year, where weeks are understood to start on
- * Monday. If the date is before the first Monday of the year, return
- * 0. The date must be valid.
+ * Monday. If the date is before the first Monday of the year, return 0.
+ * The date must be valid.
  *
  * Returns: week of the year
  */
@@ -731,9 +731,9 @@ g_date_get_monday_week_of_year (const GDate *d)
  * g_date_get_sunday_week_of_year:
  * @date: a #GDate
  *
- * Returns the week of the year during which this date falls, if weeks
- * are understood to being on Sunday. The date must be valid. Can return
- * 0 if the day is before the first Sunday of the year.
+ * Returns the week of the year during which this date falls, if
+ * weeks are understood to being on Sunday. The date must be valid.
+ * Can return 0 if the day is before the first Sunday of the year.
  *
  * Returns: week number
  */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]