diff options
author | Xie Yanbo <xieyanbo@gmail.com> | 2024-06-24 17:47:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 17:47:00 (GMT) |
commit | 0153fd094019b84e18b8e8451019694595f67f9e (patch) | |
tree | 672f4b9c8b1142545cc880d0f3c8ba722bc24950 /Objects/complexobject.c | |
parent | 8ac08f36fe9016a8109edf9e167b06627fb13b5a (diff) | |
download | cpython-0153fd094019b84e18b8e8451019694595f67f9e.zip cpython-0153fd094019b84e18b8e8451019694595f67f9e.tar.gz cpython-0153fd094019b84e18b8e8451019694595f67f9e.tar.bz2 |
Fix typos in comments (#120821)
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index a8be266..7b62fe3 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -912,7 +912,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) * handles the case of no arguments and one positional argument, and calls * complex_new(), implemented with Argument Clinic, to handle the remaining * cases: 'real' and 'imag' arguments. This separation is well suited - * for different constructor roles: convering a string or number to a complex + * for different constructor roles: converting a string or number to a complex * number and constructing a complex number from real and imaginary parts. */ static PyObject * |