diff options
Diffstat (limited to 'cli/ops.rs')
-rw-r--r-- | cli/ops.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/ops.rs b/cli/ops.rs index a0605f64b..68e593934 100644 --- a/cli/ops.rs +++ b/cli/ops.rs @@ -69,9 +69,9 @@ fn empty_buf() -> Buf { } /// Processes raw messages from JavaScript. -/// This functions invoked every time libdeno.send() is called. -/// control corresponds to the first argument of libdeno.send(). -/// data corresponds to the second argument of libdeno.send(). +/// This functions invoked every time Deno.core.dispatch() is called. +/// control corresponds to the first argument of Deno.core.dispatch(). +/// data corresponds to the second argument of Deno.core.dispatch(). pub fn dispatch_all( sc: &IsolateStateContainer, control: &[u8], |