From e405037abc60657d7865fa02b248b84825715a2d Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Wed, 22 Aug 2007 21:38:31 +0000 Subject: Fix typo in comment --- Modules/socketmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 3ad7039..e157c3d 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2207,9 +2207,9 @@ sock_recv(PySocketSockObject *s, PyObject *args) } if (outlen != recvlen) { /* We did not read as many bytes as we anticipated, resize the - string if possible and be succesful. */ + string if possible and be successful. */ if (PyBytes_Resize(buf, outlen) < 0) - /* Oopsy, not so succesful after all. */ + /* Oopsy, not so successful after all. */ return NULL; } -- cgit v0.12