From fe4486792fe598de37f6a27cda07b405aee1bf7b Mon Sep 17 00:00:00 2001 From: Veniamin Krol Date: Mon, 25 Apr 2016 16:22:14 +0300 Subject: [PATCH] Fix small typo --- pages/Module Resolution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Module Resolution.md b/pages/Module Resolution.md index 9ceeb6465..f33f513fa 100644 --- a/pages/Module Resolution.md +++ b/pages/Module Resolution.md @@ -264,7 +264,7 @@ Following this logic, the compiler will attempt to resolve the two imports as su 2. try first substitution in the list: '*' -> `folder1/file2` 3. result of substitution is relative name - combine it with *baseUrl* -> `projectRoot/folder1/file2.ts`. 4. File exists. Done. -* import 'folder2/file2' +* import 'folder2/file3' 1. pattern '*' is matched and wildcard captures the whole module name 2. try first substitution in the list: '*' -> `folder2/file3` 3. result of substitution is relative name - combine it with *baseUrl* -> `projectRoot/folder2/file3.ts`.