diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-02-25 09:14:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 09:14:27 -0500 |
commit | 91b606aaae23bcb790b55adc5fe70a182a37d564 (patch) | |
tree | 16b56a21ffcb3991569eda984fbd14073bdbd3ae /cli/ops/plugins.rs | |
parent | 805992b14a65a6dbfb857dea6d9b657477de043d (diff) |
Clean up how we use opIds (#4118)
Diffstat (limited to 'cli/ops/plugins.rs')
-rw-r--r-- | cli/ops/plugins.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/plugins.rs b/cli/ops/plugins.rs index 67ad5a13a..816c7ebb4 100644 --- a/cli/ops/plugins.rs +++ b/cli/ops/plugins.rs @@ -13,7 +13,7 @@ use std::rc::Rc; pub fn init(i: &mut Isolate, s: &State, r: Rc<deno_core::OpRegistry>) { let r_ = r; i.register_op( - "open_plugin", + "op_open_plugin", s.core_op(json_op(s.stateful_op(move |state, args, zero_copy| { op_open_plugin(&r_, state, args, zero_copy) }))), |