]> granicus.if.org Git - python/commitdiff
Fix tiny tiny typo in 3.8 what's new (GH-13049)
authorDaniel Porteous <dport@fb.com>
Thu, 2 May 2019 08:20:59 +0000 (04:20 -0400)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 2 May 2019 08:20:58 +0000 (01:20 -0700)
I feel silly even making such a tiny typo fix, but I couldn't help but notice it.

Doc/whatsnew/3.8.rst

index c958fc36d667c05eec76182b77681d7f3190f533..82be92786ab005f9900aaf78ce993c6982dc1954 100644 (file)
@@ -227,8 +227,8 @@ collections
 -----------
 
 The :meth:`_asdict()` method for :func:`collections.namedtuple` now returns
-a :class:`dict` instead of a :class:`collections.OrderedDict`.  This works because
-regular dicts have guaranteed ordering in since Python 3.7.  If the extra
+a :class:`dict` instead of a :class:`collections.OrderedDict`. This works because
+regular dicts have guaranteed ordering since Python 3.7. If the extra
 features of :class:`OrderedDict` are required, the suggested remediation is
 to cast the result to the desired type: ``OrderedDict(nt._asdict())``.
 (Contributed by Raymond Hettinger in :issue:`35864`.)