We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a3e0e commit c4e518cCopy full SHA for c4e518c
pendulum/__init__.py
@@ -244,14 +244,14 @@ def today(tz: str | Timezone = "local") -> DateTime:
244
245
def tomorrow(tz: str | Timezone = "local") -> DateTime:
246
"""
247
- Create a DateTime instance for today.
+ Create a DateTime instance for tommorow.
248
249
return today(tz).add(days=1)
250
251
252
def yesterday(tz: str | Timezone = "local") -> DateTime:
253
254
+ Create a DateTime instance for yesterday.
255
256
return today(tz).subtract(days=1)
257
0 commit comments