From 27cab58bf236fc362ab2d07b1299ed29727cf8f6 Mon Sep 17 00:00:00 2001 From: Robert Fewell <14uBobIT@gmail.com> Date: Fri, 6 May 2022 12:15:39 +0100 Subject: [PATCH] Correct some text describing some date functions. --- libgnucash/engine/gnc-date.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libgnucash/engine/gnc-date.h b/libgnucash/engine/gnc-date.h index 8f445530ae..d2ec8298ec 100644 --- a/libgnucash/engine/gnc-date.h +++ b/libgnucash/engine/gnc-date.h @@ -702,7 +702,7 @@ void gnc_gdate_set_prev_month_end (GDate *date); /** This function modifies a GDate to set it to the first day of the * quarter in which it falls. For example, if this function is called - * with a date of 2003-09-24 the date will be modified to 2003-09-01. + * with a date of 2003-09-24 the date will be modified to 2003-07-01. * * @param date The GDate to modify. */ void gnc_gdate_set_quarter_start (GDate *date); @@ -710,7 +710,7 @@ void gnc_gdate_set_quarter_start (GDate *date); /** This function modifies a GDate to set it to the last day of the * quarter in which it falls. For example, if this function is called - * with a date of 2003-09-24 the date will be modified to 2003-12-31. + * with a date of 2003-09-24 the date will be modified to 2003-09-30. * * @param date The GDate to modify. */ void gnc_gdate_set_quarter_end (GDate *date); @@ -719,7 +719,7 @@ void gnc_gdate_set_quarter_end (GDate *date); /** This function modifies a GDate to set it to the first day of the * quarter prior to the one in which it falls. For example, if this * function is called with a date of 2003-09-24 the date will be - * modified to 2003-06-01. + * modified to 2003-04-01. * * @param date The GDate to modify. */ void gnc_gdate_set_prev_quarter_start (GDate *date); @@ -728,7 +728,7 @@ void gnc_gdate_set_prev_quarter_start (GDate *date); /** This function modifies a GDate to set it to the last day of the * quarter prior to the one in which it falls. For example, if this * function is called with a date of 2003-09-24 the date will be - * modified to 2003-07-31. + * modified to 2003-06-30. * * @param date The GDate to modify. */ void gnc_gdate_set_prev_quarter_end (GDate *date);