diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-21 20:54:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 20:54:39 (GMT) |
commit | 224ed378b9aadad9dbbd890064677433188aecd9 (patch) | |
tree | 636250c59360c8550dc689b2884bdfa0f5bc136c | |
parent | c3442fd8a7f6e34ba888efea085c3701b75c0b71 (diff) | |
download | cpython-224ed378b9aadad9dbbd890064677433188aecd9.zip cpython-224ed378b9aadad9dbbd890064677433188aecd9.tar.gz cpython-224ed378b9aadad9dbbd890064677433188aecd9.tar.bz2 |
Fix bpo-39416: Change "Numeric" to lower case; an english word, not a class name (GH-22867)
This is a trivial fix to [bpo-39416](), which didn't come up until it was already committed
```
Change "Numeric" to "numeric".
I believe this is trivial enough to not need an issue or a NEWS entry, although
I'm unclear on what branches the original pull request received backports.
```
Automerge-Triggered-By: GH:merwok
(cherry picked from commit f8b1ccd63c94bcde1c15d56d24add89861b6ceee)
Co-authored-by: kpinc <kop@karlpinc.com>
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index c0e7edb..5ecf543 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -187,7 +187,7 @@ Ellipsis related to mathematical numbers, but subject to the limitations of numerical representation in computers. - The string representations of the Numeric classes, computed by + The string representations of the numeric classes, computed by :meth:`__repr__` and :meth:`__str__`, have the following properties: |