Fix typo: asyncronous -> asynchronous

This commit is contained in:
Jan Pokorný 2016-09-30 14:04:11 +02:00
parent db7dcd1411
commit d2b15efe60
No known key found for this signature in database
GPG Key ID: 61BBB23A9E8F8DE2
2 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ extern "C" {
* The function qb_ipcc_send() sends an message buffer request.
*
* @par Asynchronous events from the server
* The qb_ipcc_event_recv() function receives an out-of-band asyncronous message.
* The qb_ipcc_event_recv() function receives an out-of-band asynchronous message.
* The asynchronous messages are queued and can provide very high out-of-band performance.
* To determine when to call qb_ipcc_event_recv() the qb_ipcc_fd_get() call is
* used to obtain a file descriptor used in the poll() or select() system calls.

View File

@ -278,7 +278,7 @@ ssize_t qb_ipcs_response_sendv(qb_ipcs_connection_t *c,
const struct iovec * iov, size_t iov_len);
/**
* Send an asyncronous event message to the client.
* Send an asynchronous event message to the client.
*
* @param c connection instance
* @param data the message to send
@ -297,7 +297,7 @@ ssize_t qb_ipcs_event_send(qb_ipcs_connection_t *c, const void *data,
size_t size);
/**
* Send an asyncronous event message to the client.
* Send an asynchronous event message to the client.
*
* @param c connection instance
* @param iov the iovec struct that points to the message to send