Skip to content

Commit 4a87789

Browse files
Fix typo in message
1 parent 46fa477 commit 4a87789

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/moduleNameResolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ namespace ts {
782782
if (traceEnabled) {
783783
trace(host, Diagnostics.Resolving_real_path_for_0_result_1, path, real);
784784
}
785-
Debug.assert(host.fileExists(real), `${path} linked to non-existing file ${real}`); // tslint:disable-line
785+
Debug.assert(host.fileExists(real), `${path} linked to nonexistent file ${real}`); // tslint:disable-line
786786
return real;
787787
}
788788

0 commit comments

Comments
 (0)