Skip to content

Commit 94ea41a

Browse files
authored
fix(readline/promises): new Interface() -> new PromisesInterface() (#1818)
1 parent 8235e59 commit 94ea41a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bun.js/readline.exports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3255,7 +3255,7 @@ export var promises = {
32553255
Readline,
32563256
Interface: PromisesInterface,
32573257
createInterface(input, output, completer, terminal) {
3258-
return new Interface(input, output, completer, terminal);
3258+
return new PromisesInterface(input, output, completer, terminal);
32593259
},
32603260
};
32613261

0 commit comments

Comments
 (0)