From 4a73fa6fce2d3df39872e2767811ad4d6b533087 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Fri, 1 Jun 2018 15:00:15 +0200 Subject: Fixed spelling Change-Id: Id7c183face3179a3b9cec7ed128e3a2561d9f3ad Signed-off-by: Sebastien Douheret --- src/afb-ws-client.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/afb-ws-client.h') diff --git a/src/afb-ws-client.h b/src/afb-ws-client.h index 574eb9b0..620dc50f 100644 --- a/src/afb-ws-client.h +++ b/src/afb-ws-client.h @@ -25,19 +25,19 @@ struct sd_event; /* * Makes the WebSocket handshake at the 'uri' and if successful - * instanciate a wsj1 websocket for this connection using 'itf' and 'closure'. + * instantiate a wsj1 websocket for this connection using 'itf' and 'closure'. * (see afb_wsj1_create). * The systemd event loop 'eloop' is used to handle the websocket. - * Returns NULL in case of failure with errno set appriately. + * Returns NULL in case of failure with errno set appropriately. */ extern struct afb_wsj1 *afb_ws_client_connect_wsj1(struct sd_event *eloop, const char *uri, struct afb_wsj1_itf *itf, void *closure); /* * Establish a websocket-like client connection to the API of 'uri' and if successful - * instanciate a client afb_proto_ws websocket for this API using 'itf' and 'closure'. + * instantiate a client afb_proto_ws websocket for this API using 'itf' and 'closure'. * (see afb_proto_ws_create_client). * The systemd event loop 'eloop' is used to handle the websocket. - * Returns NULL in case of failure with errno set appriately. + * Returns NULL in case of failure with errno set appropriately. */ extern struct afb_proto_ws *afb_ws_client_connect_api(struct sd_event *eloop, const char *uri, struct afb_proto_ws_client_itf *itf, void *closure); -- cgit 1.2.3-korg