diff options
author | 2022-07-08 18:04:32 -0500 | |
---|---|---|
committer | 2022-07-09 18:34:46 -0700 | |
commit | 0acf8a66181624e11ec83a0e4031eb8c2facc9d2 (patch) | |
tree | c53c371abe270b546d7d24b429b3c2791ea4a075 /src/bun.js/bindings/ScriptExecutionContext.h | |
parent | 547ac721faa5cc8f7309e31059bbc8bd6306973e (diff) | |
download | bun-0acf8a66181624e11ec83a0e4031eb8c2facc9d2.tar.gz bun-0acf8a66181624e11ec83a0e4031eb8c2facc9d2.tar.zst bun-0acf8a66181624e11ec83a0e4031eb8c2facc9d2.zip |
refactor(websockets): Rename `connectedWebSocketContext()`
Signed-off-by: Ryan Russell <git@ryanrussell.org>
Diffstat (limited to 'src/bun.js/bindings/ScriptExecutionContext.h')
-rw-r--r-- | src/bun.js/bindings/ScriptExecutionContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/bindings/ScriptExecutionContext.h b/src/bun.js/bindings/ScriptExecutionContext.h index 227c57e6a..ab86b6816 100644 --- a/src/bun.js/bindings/ScriptExecutionContext.h +++ b/src/bun.js/bindings/ScriptExecutionContext.h @@ -145,7 +145,7 @@ private: public: template<bool isSSL, bool isServer> - us_socket_context_t* connnectedWebSocketContext() + us_socket_context_t* connectedWebSocketContext() { if constexpr (isSSL) { if (!m_connected_ssl_client_websockets_ctx) { |