aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-ws-client.h
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-06-01 15:00:15 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2018-06-13 17:15:28 +0200
commit4a73fa6fce2d3df39872e2767811ad4d6b533087 (patch)
tree63e22fbc9693e91900c8c493188283a5e166753c /src/afb-ws-client.h
parenta708fcbcb234af8ffe69d04786e44472b45f3559 (diff)
Fixed spelling
Change-Id: Id7c183face3179a3b9cec7ed128e3a2561d9f3ad Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'src/afb-ws-client.h')
-rw-r--r--src/afb-ws-client.h8
1 files changed, 4 insertions, 4 deletions
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);