diff options
Diffstat (limited to 'cli/cache/check.rs')
-rw-r--r-- | cli/cache/check.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/cache/check.rs b/cli/cache/check.rs index 4e0f8d912..6f3c41950 100644 --- a/cli/cache/check.rs +++ b/cli/cache/check.rs @@ -22,7 +22,7 @@ impl TypeCheckCache { Err(err) => { log::debug!( concat!( - "Failed creating internal type checking cache. ", + "Failed loading internal type checking cache. ", "Recreating...\n\nError details:\n{:#}", ), err @@ -35,7 +35,7 @@ impl TypeCheckCache { Err(err) => { log::debug!( concat!( - "Unable to create internal cache for type checking. ", + "Unable to load internal cache for type checking. ", "This will reduce the performance of type checking.\n\n", "Error details:\n{:#}", ), @@ -233,7 +233,7 @@ mod test { cache.set_tsbuildinfo(&specifier1, "test"); assert_eq!(cache.get_tsbuildinfo(&specifier1), Some("test".to_string())); - // recreating the cache should not remove the data because the CLI version and state hash is the same + // recreating the cache should not remove the data because the CLI version is the same let conn = cache.0.unwrap(); let cache = TypeCheckCache::from_connection(conn, "2.0.0".to_string()).unwrap(); |