diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-05-09 22:44:30 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-09 16:44:30 -0400 |
commit | 1fc61f3b6a32d30d3667855c4b2e4457f309ac87 (patch) | |
tree | 95bae8504a0a8e3f4417713a7b0d02ef1b2df49c /cli/ops.rs | |
parent | 07886a03cc913a15fa8e90034e80edeb41186c2c (diff) |
core: Privatize ModuleNameMap SymbolicModule deno_buf (#2324)
Diffstat (limited to 'cli/ops.rs')
-rw-r--r-- | cli/ops.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops.rs b/cli/ops.rs index 610304aea..322e41242 100644 --- a/cli/ops.rs +++ b/cli/ops.rs @@ -121,7 +121,7 @@ pub fn dispatch_all_legacy( op.or_else(move |err: DenoError| -> Result<Buf, ()> { debug!("op err {}", err); // No matter whether we got an Err or Ok, we want a serialized message to - // send back. So transform the DenoError into a deno_buf. + // send back. So transform the DenoError into a Buf. let builder = &mut FlatBufferBuilder::new(); let errmsg_offset = builder.create_string(&format!("{}", err)); Ok(serialize_response( |