From e4430400ced48529730a8752c547b613a23c76ce Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sat, 11 Mar 2023 22:58:55 +0900 Subject: [PATCH] chore: typo (#18128) --- cli/tests/integration/coverage_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tests/integration/coverage_tests.rs b/cli/tests/integration/coverage_tests.rs index 87ed655b8b..27e0724184 100644 --- a/cli/tests/integration/coverage_tests.rs +++ b/cli/tests/integration/coverage_tests.rs @@ -45,7 +45,7 @@ fn error_if_invalid_cache() { let mod_temp_path = deno_dir_path.join("mod.ts"); let mod_test_temp_path = deno_dir_path.join("mod.test.ts"); - // Write the inital mod.ts file + // Write the initial mod.ts file std::fs::copy(mod_before_path, &mod_temp_path).unwrap(); // And the test file std::fs::copy(mod_test_path, mod_test_temp_path).unwrap();