filename -> fileName

This commit is contained in:
Daniel Rosenwasser
2015-06-08 11:58:59 -07:00
parent f8b6dedfb6
commit 84e78e93da
+2 -2
View File
@@ -73,11 +73,11 @@ These files support metadata tags in the format `// @metaDataName: value`. The
When one needs to test for scenarios which require multiple files, it is useful to use the `fileName` metadata tag as such:
```TypeScript
// @filename: file1.ts
// @fileName: file1.ts
export function f() {
}
// @filename: file2.ts
// @fileName: file2.ts
import { f as g } from "file1";
var x = g();