Skip to content

Commit 43a6eb8

Browse files
Switched parameter name to array binding pattern.
1 parent 81dabb4 commit 43a6eb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const enum Indentation {
2929
//// foo();
3030
//// /*2*/foo(a);
3131
//// /*3*/foo(a, b);
32-
//// /*4*/ foo(a, {x: string}, c);
32+
//// /*4*/ foo(a, {x: string}, [c]);
3333
//// /*5*/foo(a?, b?, ...args) {
3434
//// }
3535
////}
@@ -66,7 +66,7 @@ confirmNormalizedJsDoc("4", Indentation.Indented,
6666
*
6767
* @param a
6868
* @param param1
69-
* @param c
69+
* @param param2
7070
*/`);
7171

7272
confirmNormalizedJsDoc("5", Indentation.Indented,

0 commit comments

Comments
 (0)