Skip to content

Commit 16b68ff

Browse files
committed
Fix typo
1 parent d15926d commit 16b68ff

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//// [independentPropertyVariance.ts]
2-
// Verify that properties can vary idependently in comparable relationship
2+
// Verify that properties can vary independently in comparable relationship
33

44
declare const x: { a: 1, b: string };
55
declare const y: { a: number, b: 'a' };
@@ -9,5 +9,5 @@ x === y;
99

1010
//// [independentPropertyVariance.js]
1111
"use strict";
12-
// Verify that properties can vary idependently in comparable relationship
12+
// Verify that properties can vary independently in comparable relationship
1313
x === y;

tests/baselines/reference/independentPropertyVariance.symbols

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.ts ===
2-
// Verify that properties can vary idependently in comparable relationship
2+
// Verify that properties can vary independently in comparable relationship
33

44
declare const x: { a: 1, b: string };
55
>x : Symbol(x, Decl(independentPropertyVariance.ts, 2, 13))

tests/baselines/reference/independentPropertyVariance.types

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.ts ===
2-
// Verify that properties can vary idependently in comparable relationship
2+
// Verify that properties can vary independently in comparable relationship
33

44
declare const x: { a: 1, b: string };
55
>x : { a: 1; b: string; }

tests/cases/conformance/types/typeRelationships/comparable/independentPropertyVariance.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @strict: true
22

3-
// Verify that properties can vary idependently in comparable relationship
3+
// Verify that properties can vary independently in comparable relationship
44

55
declare const x: { a: 1, b: string };
66
declare const y: { a: number, b: 'a' };

0 commit comments

Comments
 (0)