From f60873ca42d26ecfa45f67b84d5eb0869b3f584d Mon Sep 17 00:00:00 2001 From: nilshoerrmann Date: Tue, 23 Jun 2020 10:41:12 +0200 Subject: [PATCH] Fix typo --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a02feac..b9703a7 100755 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ $page->date()->toRelative('next Monday'); ### toCurrentYear() -Creates a `DateTime` representation of th field value and returns it with the year set to the current one. +Creates a `DateTime` representation of the field value and returns it with the year set to the current one. ```php $page->date()->toCurrentYear(); @@ -83,7 +83,7 @@ $page->date()->toCurrentYear(); ### toCurrentMonth() -Creates a `DateTime` representation of th field value and returns it with the month set to the current one. +Creates a `DateTime` representation of the field value and returns it with the month set to the current one. ```php $page->date()->toCurrentMonth(); @@ -91,7 +91,7 @@ $page->date()->toCurrentMonth(); ### toCurrentDay() -Creates a `DateTime` representation of th field value and returns it with the day set to the current one. +Creates a `DateTime` representation of the field value and returns it with the day set to the current one. ```php $page->date()->toCurrentDay();