summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-07-28 18:36:01 (GMT)
committerGeorg Brandl <georg@python.org>2006-07-28 18:36:01 (GMT)
commitcddabbf98ab16a1daa5cc36e0ef0767066d4feed (patch)
tree9659c34ec9f9ae8f4ae3db034f1b9929ac575303 /Modules/socketmodule.c
parent4793aa39a9200383117fe58a0b10fcfae4299c45 (diff)
downloadcpython-cddabbf98ab16a1daa5cc36e0ef0767066d4feed.zip
cpython-cddabbf98ab16a1daa5cc36e0ef0767066d4feed.tar.gz
cpython-cddabbf98ab16a1daa5cc36e0ef0767066d4feed.tar.bz2
Fix spelling.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 55539ca..a53a702 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -2307,7 +2307,7 @@ sock_recv(PySocketSockObject *s, PyObject *args)
/* Call the guts */
outlen = sock_recv_guts(s, PyString_AS_STRING(buf), recvlen, flags);
if (outlen < 0) {
- /* An error occured, release the string and return an
+ /* An error occurred, release the string and return an
error. */
Py_DECREF(buf);
return NULL;