diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-17 11:42:40 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-17 11:42:40 (GMT) |
commit | 2be0edb2c4c9dfce35fcef4f985b2c92c0fd8b2e (patch) | |
tree | 7fb5f74ab334eca41d14666763264324ca6d330b | |
parent | 08133c2e8e62bb3c04c84b1ddbd713bdc5439e7f (diff) | |
parent | dfe109e33f95f0c2cad5465347a62ac3ec14ca06 (diff) | |
download | cpython-2be0edb2c4c9dfce35fcef4f985b2c92c0fd8b2e.zip cpython-2be0edb2c4c9dfce35fcef4f985b2c92c0fd8b2e.tar.gz cpython-2be0edb2c4c9dfce35fcef4f985b2c92c0fd8b2e.tar.bz2 |
Fix typo
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index 7c0aac3..c1a2410 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1442,7 +1442,7 @@ Example: instantiated directly. You need to derive a concrete subclass, and (at least) supply implementations of the standard :class:`tzinfo` methods needed by the :class:`.datetime` methods you use. The :mod:`datetime` module supplies -a simple concrete subclass of :class:`tzinfo` :class:`timezone` which can reprsent +a simple concrete subclass of :class:`tzinfo` :class:`timezone` which can represent timezones with fixed offset from UTC such as UTC itself or North American EST and EDT. |