Skip to content

Commit b1a7498

Browse files
committed
Fix comment
1 parent d182a59 commit b1a7498

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/baselines/reference/typeGuardIntersectionTypes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function union(a: A): A & B | null {
5050
}
5151
}
5252

53-
// Repro from #9011
53+
// Repro from #9016
5454

5555
declare function log(s: string): void;
5656

tests/baselines/reference/typeGuardIntersectionTypes.symbols

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function union(a: A): A & B | null {
117117
}
118118
}
119119

120-
// Repro from #9011
120+
// Repro from #9016
121121

122122
declare function log(s: string): void;
123123
>log : Symbol(log, Decl(typeGuardIntersectionTypes.ts, 49, 1))

tests/baselines/reference/typeGuardIntersectionTypes.types

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function union(a: A): A & B | null {
133133
}
134134
}
135135

136-
// Repro from #9011
136+
// Repro from #9016
137137

138138
declare function log(s: string): void;
139139
>log : (s: string) => void

tests/cases/conformance/expressions/typeGuards/typeGuardIntersectionTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function union(a: A): A & B | null {
5050
}
5151
}
5252

53-
// Repro from #9011
53+
// Repro from #9016
5454

5555
declare function log(s: string): void;
5656

0 commit comments

Comments
 (0)