From 9e226616d5118f0ae9cca2d2771e67709cf8f3b8 Mon Sep 17 00:00:00 2001 From: Delgan Date: Thu, 17 May 2018 21:59:44 +0200 Subject: [PATCH] Fix typos in "end_of()" documentation --- 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 40c34380..160db8c4 100644 --- a/docs/docs/modifiers.md +++ b/docs/docs/modifiers.md @@ -28,13 +28,13 @@ It returns the middle date between itself and the provided `DateTime` argument. '2012-01-01 00:00:00' >>> dt.end_of('year') -'2012-01-31 23:59:59' +'2012-12-31 23:59:59' >>> dt.start_of('decade') '2010-01-01 00:00:00' >>> dt.end_of('decade') -'2019-01-31 23:59:59' +'2019-12-31 23:59:59' >>> dt.start_of('century') '2000-01-01 00:00:00'