summaryrefslogtreecommitdiffstats
path: root/Objects/complexobject.c
diff options
context:
space:
mode:
authorXie Yanbo <xieyanbo@gmail.com>2024-06-24 17:47:00 (GMT)
committerGitHub <noreply@github.com>2024-06-24 17:47:00 (GMT)
commit0153fd094019b84e18b8e8451019694595f67f9e (patch)
tree672f4b9c8b1142545cc880d0f3c8ba722bc24950 /Objects/complexobject.c
parent8ac08f36fe9016a8109edf9e167b06627fb13b5a (diff)
downloadcpython-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.c2
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 *