diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-03-30 21:34:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 21:34:31 (GMT) |
commit | 6c9a2a831ea235fad7a6398bba395f4c776dc85c (patch) | |
tree | 5e1743d1d1ff2869467e34e4d1aa4358a2a09fa0 /Doc/reference/expressions.rst | |
parent | 8c3ab189ae552401581ecf0b260a96d80dcdae28 (diff) | |
download | cpython-6c9a2a831ea235fad7a6398bba395f4c776dc85c.zip cpython-6c9a2a831ea235fad7a6398bba395f4c776dc85c.tar.gz cpython-6c9a2a831ea235fad7a6398bba395f4c776dc85c.tar.bz2 |
fix comma location in various places (GH-19233)
(cherry picked from commit c49016e67c3255b37599b354a8d7995d40663991)
Co-authored-by: Mathieu Dupuy <deronnax@users.noreply.github.com>
Diffstat (limited to 'Doc/reference/expressions.rst')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 3fcc5e1..16542cd 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -28,7 +28,7 @@ Arithmetic conversions .. index:: pair: arithmetic; conversion When a description of an arithmetic operator below uses the phrase "the numeric -arguments are converted to a common type," this means that the operator +arguments are converted to a common type", this means that the operator implementation for built-in types works as follows: * If either argument is a complex number, the other is converted to complex; |