diff --git a/types/index.d.ts b/types/index.d.ts index 5141e233..37901395 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -80,7 +80,7 @@ declare namespace dayjs { * * Months are zero indexed, so January is month 0. * - * Accepts numbers from 0 to 11. If the range is exceeded, it will bubble up to the year. + * Accepts numbers from 0 to 11. If the range is exceeded, it will bubble up to the next year. * ``` * dayjs().month(0)// => Dayjs * ``` @@ -98,7 +98,7 @@ declare namespace dayjs { /** * Set the date of the month. * - * Accepts numbers from 1 to 31. If the range is exceeded, it will bubble up to the months. + * Accepts numbers from 1 to 31. If the range is exceeded, it will bubble up to the next months. * ``` * dayjs().date(1)// => Dayjs * ``` @@ -118,7 +118,7 @@ declare namespace dayjs { /** * Set the day of the week. * - * Accepts numbers from 0 (Sunday) to 6 (Saturday). If the range is exceeded, it will bubble up to other weeks. + * Accepts numbers from 0 (Sunday) to 6 (Saturday). If the range is exceeded, it will bubble up to next weeks. * ``` * dayjs().day(0)// => Dayjs * ``` @@ -136,7 +136,7 @@ declare namespace dayjs { /** * Set the hour. * - * Accepts numbers from 0 to 23. If the range is exceeded, it will bubble up to the day. + * Accepts numbers from 0 to 23. If the range is exceeded, it will bubble up to the next day. * ``` * dayjs().hour(12)// => Dayjs * ``` @@ -154,7 +154,7 @@ declare namespace dayjs { /** * Set the minutes. * - * Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the hour. + * Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the next hour. * ``` * dayjs().minute(59)// => Dayjs * ``` @@ -172,7 +172,7 @@ declare namespace dayjs { /** * Set the seconds. * - * Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the minutes. + * Accepts numbers from 0 to 59. If the range is exceeded, it will bubble up to the next minutes. * ``` * dayjs().second(1)// Dayjs * ``` @@ -189,7 +189,7 @@ declare namespace dayjs { /** * Set the milliseconds. * - * Accepts numbers from 0 to 999. If the range is exceeded, it will bubble up to the seconds. + * Accepts numbers from 0 to 999. If the range is exceeded, it will bubble up to the next seconds. * ``` * dayjs().millisecond(1)// => Dayjs * ```