Skip to content

Commit c191abe

Browse files
committed
Typos in test cases
1 parent 5eca96c commit c191abe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
//// var x1;
1717
//// /*globalValue*/
1818

19-
interface VeriferCompletionsInJsDoc {
19+
interface VerifyCompletionsInJsDoc {
2020
verifyType(symbol: string, kind: string): void;
2121
verifyValue(symbol: string, kind: string): void;
2222
verifyTypeMember(symbol: string, kind: string): void;
2323
}
2424

25-
function verifyCompletionsInJsDocType(marker: string, { verifyType, verifyValue, verifyTypeMember }: VeriferCompletionsInJsDoc) {
25+
function verifyCompletionsInJsDocType(marker: string, { verifyType, verifyValue, verifyTypeMember }: VerifyCompletionsInJsDoc) {
2626
goTo.marker(marker);
2727

2828
verifyType("T", "module");

tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion2.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
/////*globalValue*/
2222
////x./*valueMember*/
2323

24-
interface VeriferCompletionsInJsDoc {
24+
interface VerifyCompletionsInJsDoc {
2525
verifyValueOrType(symbol: string, kind: string): void;
2626
verifyValue(symbol: string, kind: string): void;
2727
verifyValueMember(symbol: string, kind: string): void;
2828
}
2929

30-
function verifyCompletionsInJsDocType(marker: string, { verifyValueOrType, verifyValue, verifyValueMember }: VeriferCompletionsInJsDoc) {
30+
function verifyCompletionsInJsDocType(marker: string, { verifyValueOrType, verifyValue, verifyValueMember }: VerifyCompletionsInJsDoc) {
3131
goTo.marker(marker);
3232

3333
verifyValueOrType("Foo", "class");

0 commit comments

Comments
 (0)