(cherry picked from commit
6e44bf9558dbcaffd78b7c4fc7f6b474388b4a9a)
Co-authored-by: BenjaminHelyer <91896754+BenjaminHelyer@users.noreply.github.com>
Co-authored-by: BenjaminHelyer <91896754+BenjaminHelyer@users.noreply.github.com>
+-------------------------------+----------------------------------------------+
| Operation | Result |
+===============================+==============================================+
-| ``date2 = date1 + timedelta`` | *date2* is ``timedelta.days`` days removed |
-| | from *date1*. (1) |
+| ``date2 = date1 + timedelta`` | *date2* will be ``timedelta.days`` days |
+| | after *date1*. (1) |
+-------------------------------+----------------------------------------------+
| ``date2 = date1 - timedelta`` | Computes *date2* such that ``date2 + |
| | timedelta == date1``. (2) |