summaryrefslogtreecommitdiff
path: root/glib/gdate.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-06-05 11:30:17 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-06-05 11:54:40 -0400
commitc20f3b239cd37733df1b68f113fdc17621cc3157 (patch)
treedea213c0d0c1ed9dbf1963617e5b4ea3712b7ab8 /glib/gdate.c
parent07b3595c230c42ef8a31406d00477c9f755e902d (diff)
downloadglib-c20f3b239cd37733df1b68f113fdc17621cc3157.tar.gz
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
Diffstat (limited to 'glib/gdate.c')
-rw-r--r--glib/gdate.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/glib/gdate.c b/glib/gdate.c
index 670f7aa5f..2e4d52f1c 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
*/