From 3f8d6ab5c929c83b2284c40d15123078b9e38531 Mon Sep 17 00:00:00 2001 From: Vivek Date: Fri, 27 Mar 2026 21:35:56 +0530 Subject: [PATCH] Fix comment for isBetween parameter explanation --- docs/plugin/is-between.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugin/is-between.md b/docs/plugin/is-between.md index 5391d4c8a..5c0b0f374 100644 --- a/docs/plugin/is-between.md +++ b/docs/plugin/is-between.md @@ -17,7 +17,7 @@ dayjs("2010-10-20").isBetween("2010-10-19", dayjs("2010-10-25"), "year"); // Parameter 4 is a string with two characters; '[' means inclusive, '(' exclusive // '()' excludes start and end date (default) // '[]' includes start and end date -// '[)' includes the start date but excludes the stop +// '[)' includes the start date but excludes the end date // Granuality offers the precision on start and end inclusive checks. // For example including the start date on day precision you should use 'day' as 3rd parameter. dayjs("2016-10-30").isBetween("2016-01-01", "2016-10-30", "day", "[)");