Skip to content

Commit 114b97d

Browse files
Fix typo in FFI
1 parent 45c84a5 commit 114b97d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Node/Http2/Client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import http2 from "node:http2";
22

33
export const connectAuthImpl = (auth) => http2.connect(auth);
4-
export const connectAuthOptionsImpl = (auth) => http2.connect(auth, options);
4+
export const connectAuthOptionsImpl = (auth, options) => http2.connect(auth, options);
55

66
const undefined_ = undefined;
77
export { undefined_ as undefined }

0 commit comments

Comments
 (0)