summaryrefslogtreecommitdiff
path: root/cli/tools/check.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-07-26 18:52:31 -0400
committerGitHub <noreply@github.com>2023-07-26 22:52:31 +0000
commit56e3daa19b1a0718bbcea2beae737ce8845ceac2 (patch)
tree408138bea1dc2641b6f2ce75a6497322d27222b8 /cli/tools/check.rs
parent0e4d6d41ad64b89ab72d87a778d1bf3e516efabc (diff)
fix(lsp): handle import mapped `node:` specifier (#19956)
Closes https://github.com/denoland/vscode_deno/issues/805
Diffstat (limited to 'cli/tools/check.rs')
-rw-r--r--cli/tools/check.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/check.rs b/cli/tools/check.rs
index aa4b9db0a..75ac2dc96 100644
--- a/cli/tools/check.rs
+++ b/cli/tools/check.rs
@@ -268,7 +268,7 @@ fn get_check_hash(
}
}
- // Check if any of the top level npm pckages have changed. We could go
+ // Check if any of the top level npm packages have changed. We could go
// further and check all the individual npm packages, but that's
// probably overkill.
let mut package_reqs = package_reqs.into_iter().collect::<Vec<_>>();