aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authordaplantagenet <dean_allsopp@hotmail.com>2018-06-08 11:02:41 +0100
committerPaul Ganssle <paul@ganssle.io>2018-06-08 12:39:43 +0100
commit121d5e022f077893cdb14538705af48d83c0d282 (patch)
tree18aa84eee07b6d78d7b56a27c6cf1f3a4998d0f5 /docs
parent2831e430c30e7a832319cc63c0116f06798ede96 (diff)
downloaddateutil-121d5e022f077893cdb14538705af48d83c0d282.tar.gz
Update index.rst link to parser page
In index.rst update text and link from to dateutil "parse" to "parser".
Diffstat (limited to 'docs')
-rw-r--r--docs/exercises/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/exercises/index.rst b/docs/exercises/index.rst
index 59974b6..85c7e0b 100644
--- a/docs/exercises/index.rst
+++ b/docs/exercises/index.rst
@@ -122,7 +122,7 @@ To solve this exercise, copy-paste this script into a document, change anything
Parsing a local tzname
----------------------
- Three-character time zone abbreviations are *not* unique in that they do not explicitly map to a time zone. A list of time zone abbreviations in use can be found `here <https://www.timeanddate.com/time/zones/>`_. This means that parsing a datetime string such as ``'2018-01-01 12:30:30 CST'`` is ambiguous without context. Using `dateutil.parse <../parse.html>`_ and `dateutil.tz <../tz.html>`_, it is possible to provide a context such that these local names are converted to proper time zones.
+ Three-character time zone abbreviations are *not* unique in that they do not explicitly map to a time zone. A list of time zone abbreviations in use can be found `here <https://www.timeanddate.com/time/zones/>`_. This means that parsing a datetime string such as ``'2018-01-01 12:30:30 CST'`` is ambiguous without context. Using `dateutil.parser <../parser.html>`_ and `dateutil.tz <../tz.html>`_, it is possible to provide a context such that these local names are converted to proper time zones.
Problem 1
*********