diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-09-03 13:57:45 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-09-03 13:57:45 (GMT) |
commit | dc84ff9d0cfccec952277549d3b5031bd84c8860 (patch) | |
tree | ba269aa4236d70a95c3d43bba8dbe66eb16c038a | |
parent | f22c567b842667d01d4734847495c6b477244d97 (diff) | |
download | tcl-dc84ff9d0cfccec952277549d3b5031bd84c8860.zip tcl-dc84ff9d0cfccec952277549d3b5031bd84c8860.tar.gz tcl-dc84ff9d0cfccec952277549d3b5031bd84c8860.tar.bz2 |
typo's
-rw-r--r-- | unix/tclUnixSock.c | 4 | ||||
-rw-r--r-- | win/tclWinSock.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index 1a54914..858afdb 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.c @@ -418,7 +418,7 @@ TcpBlockModeProc( * * Side effects: * Processes socket events off the system queue. May process - * asynchroneous connects. + * asynchronous connects. * *---------------------------------------------------------------------- */ @@ -1328,7 +1328,7 @@ TcpConnect( } /* - * We need to forward the writable event that brought us here, bcasue + * We need to forward the writable event that brought us here, because * upon reading of getsockopt(SO_ERROR), at least some OSes clear the * writable state from the socket, and so a subsequent select() on * behalf of a script level [fileevent] would not fire. It doesn't diff --git a/win/tclWinSock.c b/win/tclWinSock.c index a05b8f6..a4547a8 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -566,7 +566,7 @@ TcpBlockModeProc( * * Side effects: * Processes socket events off the system queue. - * May process asynchroneous connect. + * May process asynchronous connect. * *---------------------------------------------------------------------- */ @@ -1706,7 +1706,7 @@ TcpConnect( continue; } /* - * For asynchroneous connect set the socket in nonblocking mode + * For asynchronous connect set the socket in nonblocking mode * and activate connect notification */ if (async_connect) { @@ -1794,7 +1794,7 @@ TcpConnect( /* * Clear the tsd socket list pointer if we did not wait for - * the FD_CONNECT asynchroneously + * the FD_CONNECT asynchronously */ tsdPtr->pendingTcpState = NULL; |