diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-07-19 11:58:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-19 11:58:18 -0400 |
commit | 0ab262b901348e9251262a02bef17d14ed13b997 (patch) | |
tree | fc5a6e3926ea7480714cbc844098eca6c43c1ab5 /cli/deno_dir.rs | |
parent | e99d64acedb6e111d33f53599da494865978f1aa (diff) |
feat: emit files on demand and fix racy emit (#15220)
Diffstat (limited to 'cli/deno_dir.rs')
-rw-r--r-- | cli/deno_dir.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/deno_dir.rs b/cli/deno_dir.rs index 8ca705691..303ad2c11 100644 --- a/cli/deno_dir.rs +++ b/cli/deno_dir.rs @@ -58,7 +58,7 @@ impl DenoDir { self.root.join("lint_incremental_cache_v1") } - /// Path for the incremental cache used for linting. + /// Path for the cache used for type checking. pub fn type_checking_cache_db_file_path(&self) -> PathBuf { // bump this version name to invalidate the entire cache self.root.join("check_cache_v1") |