diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-03-28 19:14:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 19:14:26 (GMT) |
commit | bac2d5ba30339298db7d4caa9c8cd31d807cf081 (patch) | |
tree | d08e103d7d7f2ef41b56c2e7d8c360663bf7780e /Doc/library/datetime.rst | |
parent | aa50bf08e64f49d57917ab0b1aadf4308a3168a6 (diff) | |
download | cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.zip cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.gz cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.bz2 |
Fix duplicating words words. (GH-6296)
Most of them have been added in 3.7.
Diffstat (limited to 'Doc/library/datetime.rst')
-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 c1b164e..8d91f4e 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -2209,8 +2209,8 @@ Notes: :meth:`utcoffset` is transformed into a string of the form ±HHMM[SS[.uuuuuu]], where HH is a 2-digit string giving the number of UTC offset hours, and MM is a 2-digit string giving the number of UTC offset - minutes, SS is a 2-digit string string giving the number of UTC offset - seconds and uuuuuu is a 2-digit string string giving the number of UTC + minutes, SS is a 2-digit string giving the number of UTC offset + seconds and uuuuuu is a 2-digit string giving the number of UTC offset microseconds. The uuuuuu part is omitted when the offset is a whole number of minutes and both the uuuuuu and the SS parts are omitted when the offset is a whole number of minutes. For example, if |