1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix a harmless typo in a comment.

FossilOrigin-Name: 382a8f94bffef3e5f715116e363a30e21e2c53cd42d4959dfbe90c4624143e6d
This commit is contained in:
drh
2024-01-21 21:20:33 +00:00
parent f28bff745c
commit 199b0b2d6e
3 changed files with 10 additions and 9 deletions

View File

@@ -1242,7 +1242,8 @@ static void dateFunc(
** In other words, compute the zero-based day number for the
** current year:
**
** Jan01 = 0, Jan02 = 2, ... Dec31 = 364 or 365.
** Jan01 = 0, Jan02 = 1, ..., Jan31 = 30, Feb01 = 31, ...
** Dec31 = 364 or 365.
*/
static int daysAfterJan01(DateTime *pDate){
DateTime jan01 = *pDate;