From 4a877897792ec3ec58ab06991d314af03dc37181 Mon Sep 17 00:00:00 2001 From: uniqueiniquity Date: Fri, 19 Jan 2018 16:40:52 -0800 Subject: [PATCH] Fix typo in message --- src/compiler/moduleNameResolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/moduleNameResolver.ts b/src/compiler/moduleNameResolver.ts index e0acf43eadf..4f893302693 100644 --- a/src/compiler/moduleNameResolver.ts +++ b/src/compiler/moduleNameResolver.ts @@ -782,7 +782,7 @@ namespace ts { if (traceEnabled) { trace(host, Diagnostics.Resolving_real_path_for_0_result_1, path, real); } - Debug.assert(host.fileExists(real), `${path} linked to non-existing file ${real}`); // tslint:disable-line + Debug.assert(host.fileExists(real), `${path} linked to nonexistent file ${real}`); // tslint:disable-line return real; }