From 881bd7f42aaed4b46b0c4a71702d700cf8f714b5 Mon Sep 17 00:00:00 2001 From: Paul Nelson Date: Tue, 12 Aug 2025 14:26:49 -0300 Subject: [PATCH] fix typo in docs for end_of('century') --- docs/docs/modifiers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/modifiers.md b/docs/docs/modifiers.md index c3c4cf72..64a3a994 100644 --- a/docs/docs/modifiers.md +++ b/docs/docs/modifiers.md @@ -37,10 +37,10 @@ It returns the middle date between itself and the provided `DateTime` argument. '2019-12-31 23:59:59' >>> dt.start_of('century') -'2000-01-01 00:00:00' +'2001-01-01 00:00:00' >>> dt.end_of('century') -'2099-12-31 23:59:59' +'2100-12-31 23:59:59' >>> dt.start_of('week') '2012-01-30 00:00:00'