summaryrefslogtreecommitdiff
path: root/cli/napi/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/napi/env.rs')
-rw-r--r--cli/napi/env.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/napi/env.rs b/cli/napi/env.rs
index 841b6cd96..558b9b012 100644
--- a/cli/napi/env.rs
+++ b/cli/napi/env.rs
@@ -141,8 +141,7 @@ fn napi_module_register(module: *const NapiModule) -> Result {
#[napi_sym::napi_sym]
fn napi_get_uv_event_loop(_env: *mut Env, uv_loop: *mut *mut ()) -> Result {
- // Don't error out because addons may pass this to
- // our libuv _polyfills_.
+ // There is no uv_loop in Deno
*uv_loop = std::ptr::null_mut();
Ok(())
}