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
This commit is contained in:
Matthias Clasen 2015-06-05 11:30:17 -04:00
parent 07b3595c23
commit c20f3b239c

View File

@ -698,8 +698,8 @@ g_date_get_day_of_year (const GDate *d)
* @date: a #GDate * @date: a #GDate
* *
* Returns the week of the year, where weeks are understood to start on * 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 * Monday. If the date is before the first Monday of the year, return 0.
* 0. The date must be valid. * The date must be valid.
* *
* Returns: week of the year * 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: * g_date_get_sunday_week_of_year:
* @date: a #GDate * @date: a #GDate
* *
* Returns the week of the year during which this date falls, if weeks * Returns the week of the year during which this date falls, if
* are understood to being on Sunday. The date must be valid. Can return * weeks are understood to being on Sunday. The date must be valid.
* 0 if the day is before the first Sunday of the year. * Can return 0 if the day is before the first Sunday of the year.
* *
* Returns: week number * Returns: week number
*/ */