From d2b15efe60c6ed67ac428ec8e4b3a7dee7e9a35b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= Date: Fri, 30 Sep 2016 14:04:11 +0200 Subject: [PATCH] Fix typo: asyncronous -> asynchronous --- include/qb/qbipcc.h | 2 +- include/qb/qbipcs.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/qb/qbipcc.h b/include/qb/qbipcc.h index 77631e0..5495158 100644 --- a/include/qb/qbipcc.h +++ b/include/qb/qbipcc.h @@ -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. diff --git a/include/qb/qbipcs.h b/include/qb/qbipcs.h index 6e6ef85..6d5d53a 100644 --- a/include/qb/qbipcs.h +++ b/include/qb/qbipcs.h @@ -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