diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-04-30 14:08:43 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-04-30 14:14:00 -0700 |
commit | 410d2005f5a1f11e8204d9bc3432e0b145ae3161 (patch) | |
tree | f496c097e84884542ca64b2c73e166f22f31a629 /src/process.c | |
parent | 08df47e4786d112a639915331702b4a27def6a56 (diff) |
Fix spelling/wording issues
Found by using:
codespell --builtin clear,rare,usage,informal,code,names
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index 89ebbea..3cfc288 100644 --- a/src/process.c +++ b/src/process.c @@ -148,7 +148,7 @@ asprintf(char ** ret, const char *format, ...) * for a reply, and while calling IceProcessMessages, a callback can be * invoked which will wait for another reply). We take advantage of the * fact that for a given protocol, we are guaranteed that messages are - * processed in the order we sent them. So, everytime we have a new + * processed in the order we sent them. So, every time we have a new * replyWait, we add it to the END of the 'saved_reply_waits' list. When * we read a message and want to see if it matches a replyWait, we use the * FIRST replyWait in the list with the major opcode of the message. If the @@ -160,7 +160,7 @@ asprintf(char ** ret, const char *format, ...) * The return value of IceProcessMessages is one of the following: * * IceProcessMessagesSuccess - the message was processed successfully. - * IceProcessMessagesIOError - an IO error occured. The caller should + * IceProcessMessagesIOError - an IO error occurred. The caller should * invoked IceCloseConnection. * IceProcessMessagesConnectionClosed - the connection was closed as a * result of shutdown negotiation. @@ -207,7 +207,7 @@ IceProcessMessages ( if (!iceConn->io_ok) { /* - * An unexpected IO error occured. The caller of IceProcessMessages + * An unexpected IO error occurred. The caller of IceProcessMessages * should call IceCloseConnection which will cause the watch procedures * to be invoked and the ICE connection to be freed. */ @@ -1869,7 +1869,7 @@ ProcessProtocolSetup ( { /* * If we sent a WantToClose message, but just got a ProtocolSetup, - * we must cancel our WantToClose. It is the responsiblity of the + * we must cancel our WantToClose. It is the responsibility of the * other client to send a WantToClose later on. */ |