diff options
author | Mathieu Dupuy <deronnax@users.noreply.github.com> | 2020-03-30 21:28:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 21:28:25 (GMT) |
commit | c49016e67c3255b37599b354a8d7995d40663991 (patch) | |
tree | bf1d5863153f8d9e6f74d7e41681e293d1db8a8c /Doc/reference | |
parent | 51e3e450fbed46198d9be92add1a5dee6a1f7f41 (diff) | |
download | cpython-c49016e67c3255b37599b354a8d7995d40663991.zip cpython-c49016e67c3255b37599b354a8d7995d40663991.tar.gz cpython-c49016e67c3255b37599b354a8d7995d40663991.tar.bz2 |
fix comma location in various places (GH-19233)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 | ||||
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index e91e855..1c27063 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -17,7 +17,7 @@ Objects, values and types :dfn:`Objects` are Python's abstraction for data. All data in a Python program is represented by objects or by relations between objects. (In a sense, and in -conformance to Von Neumann's model of a "stored program computer," code is also +conformance to Von Neumann's model of a "stored program computer", code is also represented by objects.) .. index:: 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; |