Skip to content

Commit 62e1e9d

Browse files
semanitc -> semantic
1 parent 42c0bf6 commit 62e1e9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/testRunner/unittests/tsserverProjectSystem.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4980,7 +4980,7 @@ namespace ts.projectSystem {
49804980
assert.isTrue(error2Result.length === 0);
49814981
});
49824982

4983-
it("should report semanitc errors for loose JS files with '// @ts-check' and skipLibCheck=true", () => {
4983+
it("should report semantic errors for loose JS files with '// @ts-check' and skipLibCheck=true", () => {
49844984
const jsFile = {
49854985
path: "/a/jsFile.js",
49864986
content: `
@@ -5002,7 +5002,7 @@ namespace ts.projectSystem {
50025002
assert.equal(errorResult[0].code, Diagnostics.Operator_0_cannot_be_applied_to_types_1_and_2.code);
50035003
});
50045004

5005-
it("should report semanitc errors for configured js project with '// @ts-check' and skipLibCheck=true", () => {
5005+
it("should report semantic errors for configured js project with '// @ts-check' and skipLibCheck=true", () => {
50065006
const jsconfigFile = {
50075007
path: "/a/jsconfig.json",
50085008
content: "{}"
@@ -5029,7 +5029,7 @@ namespace ts.projectSystem {
50295029
assert.equal(errorResult[0].code, Diagnostics.Operator_0_cannot_be_applied_to_types_1_and_2.code);
50305030
});
50315031

5032-
it("should report semanitc errors for configured js project with checkJs=true and skipLibCheck=true", () => {
5032+
it("should report semantic errors for configured js project with checkJs=true and skipLibCheck=true", () => {
50335033
const jsconfigFile = {
50345034
path: "/a/jsconfig.json",
50355035
content: JSON.stringify({

0 commit comments

Comments
 (0)