mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
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:
parent
07b3595c23
commit
c20f3b239c
10
glib/gdate.c
10
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
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user