Fix typo on send documentation re: nullification

This commit is contained in:
maurice barnum 2015-09-18 11:22:12 -07:00
parent ed1009b3a5
commit b12b8ca23b
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ below for a detailed description.
The _zmq_msg_t_ structure passed to _zmq_msg_send()_ is nullified during the The _zmq_msg_t_ structure passed to _zmq_msg_send()_ is nullified during the
call. If you want to send the same message to multiple sockets you have to copy call. If you want to send the same message to multiple sockets you have to copy
it using (e.g. using _zmq_msg_copy()_). it (e.g. using _zmq_msg_copy()_).
NOTE: A successful invocation of _zmq_msg_send()_ does not indicate that the NOTE: A successful invocation of _zmq_msg_send()_ does not indicate that the
message has been transmitted to the network, only that it has been queued on message has been transmitted to the network, only that it has been queued on

View File

@ -31,7 +31,7 @@ below for a detailed description.
The _zmq_msg_t_ structure passed to _zmq_sendmsg()_ is nullified during the The _zmq_msg_t_ structure passed to _zmq_sendmsg()_ is nullified during the
call. If you want to send the same message to multiple sockets you have to copy call. If you want to send the same message to multiple sockets you have to copy
it using (e.g. using _zmq_msg_copy()_). it (e.g. using _zmq_msg_copy()_).
NOTE: A successful invocation of _zmq_sendmsg()_ does not indicate that the NOTE: A successful invocation of _zmq_sendmsg()_ does not indicate that the
message has been transmitted to the network, only that it has been queued on message has been transmitted to the network, only that it has been queued on