Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
noise64 committed Aug 1, 2024
1 parent 709a998 commit 1c163ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtins/web/fetch/fetch-api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ bool fetch(JSContext *cx, unsigned argc, Value *vp) {
return true;
}

bool runEventLoopUntilInterest(JSContext *cx, unsigned argc, Value *vp) {
bool run_event_loop_until_interest(JSContext *cx, unsigned argc, Value *vp) {
return ENGINE->run_event_loop_until_interest();
}

const JSFunctionSpec methods[] = {
JS_FN("fetch", fetch, 2, JSPROP_ENUMERATE),
JS_FN("runEventLoopUntilInterest", runEventLoopUntilInterest, 0, JSPROP_ENUMERATE),
JS_FN("runEventLoopUntilInterest", run_event_loop_until_interest, 0, JSPROP_ENUMERATE),
JS_FS_END,
};

Expand Down

0 comments on commit 1c163ca

Please sign in to comment.