docs(faq): Clarify date_range inclusivity

From [PR followup](https://github.com/jmbannon/ytdl-sub/pull/1298#issuecomment-3214598919).
This commit is contained in:
Ross Patterson 2025-08-22 17:06:45 -07:00
parent 251ef41078
commit 6faf90a785
No known key found for this signature in database
GPG key ID: 2EFF7CCE6828E359
2 changed files with 4 additions and 4 deletions

View file

@ -167,14 +167,14 @@ intended download files.
:expected type: Optional[OverridesFormatter]
:description:
Only download videos after this datetime.
Only download videos after or on this datetime, inclusive.
``before``
:expected type: Optional[OverridesFormatter]
:description:
Only download videos before this datetime.
Only download videos only before this datetime, not inclusive.
``breaks``

View file

@ -58,7 +58,7 @@ class DateRangeOptions(ToggleableOptionsDictValidator):
"""
:expected type: Optional[OverridesFormatter]
:description:
Only download videos before this datetime.
Only download videos only before this datetime, not inclusive.
"""
return self._before
@ -67,7 +67,7 @@ class DateRangeOptions(ToggleableOptionsDictValidator):
"""
:expected type: Optional[OverridesFormatter]
:description:
Only download videos after this datetime.
Only download videos after or on this datetime, inclusive.
"""
return self._after