Fix typo in message

This commit is contained in:
uniqueiniquity 2018-01-19 16:40:52 -08:00
parent 46fa477c15
commit 4a87789779

View File

@ -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;
}