Fix typo in the doc

This commit is contained in:
Victor Stinner 2026-05-02 13:03:52 +02:00
parent 0381b67271
commit 374dddeaf2
2 changed files with 2 additions and 2 deletions

View file

@ -687,7 +687,7 @@ array
character ``'e'``.
(Contributed by Sergey B Kirpichev in :gh:`146238`.)
* The :data:`array.typecodes` type changed from :str:`str` to :class:`tuple`
* The :data:`array.typecodes` type changed from :class:`str` to :class:`tuple`
to support type codes longer than 1 character (``Zf`` and ``Zd``).
(Contributed by Victor Stinner in :gh:`148675`.)

View file

@ -1,3 +1,3 @@
The :data:`array.typecodes` type changed from :str:`str` to :class:`tuple`
The :data:`array.typecodes` type changed from :class:`str` to :class:`tuple`
to support type codes longer than 1 character (``Zf`` and ``Zd``). Patch by
Victor Stinner.