diff options
author | wim glenn <wim.glenn@gmail.com> | 2017-06-06 19:32:14 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-06-06 19:32:14 (GMT) |
commit | b25b7254d909697bb7f3aa893b740cb650547cb6 (patch) | |
tree | 45fd3065d328ef3b524b163761be2c15fe25fe58 /Doc/library | |
parent | 68e5af89d46db6250a0fa7fe4249c66f866faff8 (diff) | |
download | cpython-b25b7254d909697bb7f3aa893b740cb650547cb6.zip cpython-b25b7254d909697bb7f3aa893b740cb650547cb6.tar.gz cpython-b25b7254d909697bb7f3aa893b740cb650547cb6.tar.bz2 |
bpo-30583: Fix typo in datetime dateutil documentation (GH-1972) (GH-1974)
Replace `datetuil` into `dateutil`
(cherry picked from commit 53f2af16551eb3a080da313257603c31ef8b93b4)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/datetime.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index c931855..98fe86e 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1849,11 +1849,11 @@ only EST (fixed offset -5 hours), or only EDT (fixed offset -4 hours)). .. seealso:: - `datetuil.tz <https://dateutil.readthedocs.io/en/stable/tz.html>`_ + `dateutil.tz <https://dateutil.readthedocs.io/en/stable/tz.html>`_ The standard library has :class:`timezone` class for handling arbitrary fixed offsets from UTC and :attr:`timezone.utc` as UTC timezone instance. - *datetuil.tz* library brings the *IANA timezone database* (also known as the + *dateutil.tz* library brings the *IANA timezone database* (also known as the Olson database) to Python and its usage is recommended. `IANA timezone database <https://www.iana.org/time-zones>`_ |