diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-17 11:42:04 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-17 11:42:04 (GMT) |
commit | dfe109e33f95f0c2cad5465347a62ac3ec14ca06 (patch) | |
tree | 981442c0a9afba15bb0ce3b7da1e612e18c8c1fa | |
parent | 655b0c462f1ad300ef1cf775765489ced4a8616d (diff) | |
download | cpython-dfe109e33f95f0c2cad5465347a62ac3ec14ca06.zip cpython-dfe109e33f95f0c2cad5465347a62ac3ec14ca06.tar.gz cpython-dfe109e33f95f0c2cad5465347a62ac3ec14ca06.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 88fa01c..8bdd961 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1359,7 +1359,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. |