diff options
author | 2022-07-12 03:47:36 -0500 | |
---|---|---|
committer | 2022-07-12 01:47:36 -0700 | |
commit | 4987067a182d0b6988be79f4f3f63360fb44cc2d (patch) | |
tree | 71fbac9db1440fdabdfa54e89b056697ae6894b0 | |
parent | a6ab6e2131baa8df6c4b68c6e060317267034ffc (diff) | |
download | bun-4987067a182d0b6988be79f4f3f63360fb44cc2d.tar.gz bun-4987067a182d0b6988be79f4f3f63360fb44cc2d.tar.zst bun-4987067a182d0b6988be79f4f3f63360fb44cc2d.zip |
refactor(exports.zig): Fix WebSocketHTTPSClient var name (#598)
Signed-off-by: Ryan Russell <git@ryanrussell.org>
-rw-r--r-- | src/bun.js/bindings/exports.zig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bun.js/bindings/exports.zig b/src/bun.js/bindings/exports.zig index 12a13e705..e39d3ea12 100644 --- a/src/bun.js/bindings/exports.zig +++ b/src/bun.js/bindings/exports.zig @@ -188,7 +188,7 @@ pub const JSHTTPResponseSink = JSC.WebCore.HTTPResponseSink.JSSink; // WebSocket pub const WebSocketHTTPClient = @import("../../http/websocket_http_client.zig").WebSocketHTTPClient; -pub const WebSocketHTTSPClient = @import("../../http/websocket_http_client.zig").WebSocketHTTPSClient; +pub const WebSocketHTTPSClient = @import("../../http/websocket_http_client.zig").WebSocketHTTPSClient; pub const WebSocketClient = @import("../../http/websocket_http_client.zig").WebSocketClient; pub const WebSocketClientTLS = @import("../../http/websocket_http_client.zig").WebSocketClientTLS; @@ -2177,7 +2177,7 @@ pub const ZigConsoleClient = struct { defer this.globalThis = prevGlobalThis; this.globalThis = globalThis; - // This looks incredibly redudant. We make the ZigConsoleClient.Formatter.Tag a + // This looks incredibly redundant. We make the ZigConsoleClient.Formatter.Tag a // comptime var so we have to repeat it here. The rationale there is // it _should_ limit the stack usage because each version of the // function will be relatively small @@ -2527,7 +2527,7 @@ pub const HTTPDebugSSLServerRequestContext = JSC.API.DebugSSLServer.RequestConte comptime { if (!is_bindgen) { WebSocketHTTPClient.shim.ref(); - WebSocketHTTSPClient.shim.ref(); + WebSocketHTTPSClient.shim.ref(); WebSocketClient.shim.ref(); WebSocketClientTLS.shim.ref(); |