summaryrefslogtreecommitdiff
path: root/modules/websocket
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-02-21 11:30:55 -0500
committerRémi Verschelde <rverschelde@gmail.com>2018-02-21 19:46:06 +0100
commit612ab4bbc6f2396f4dcd68c3f142f7dfa2f5f0a5 (patch)
tree74a9d00318eb6666ae65ae222d22f7d0352cc2ca /modules/websocket
parent6afaf83de39d29746f8852daadadc0d46483c7ef (diff)
Fix typos with codespell
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ```
Diffstat (limited to 'modules/websocket')
-rw-r--r--modules/websocket/lws_helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/websocket/lws_helper.h b/modules/websocket/lws_helper.h
index ac0c340aa9..a832d458b6 100644
--- a/modules/websocket/lws_helper.h
+++ b/modules/websocket/lws_helper.h
@@ -108,7 +108,7 @@ static bool _lws_poll(struct lws_context *context, _LWSRef *ref) {
static void _lws_make_protocols(void *p_obj, lws_callback_function *p_callback, PoolVector<String> p_names, _LWSRef **r_lws_ref) {
/* the input strings might go away after this call,
* we need to copy them. Will clear them when
- * detroying the context */
+ * destroying the context */
int i;
int len = p_names.size();
size_t data_size = sizeof(struct LWSPeer::PeerData);