From 43a6eb8171e14efb4285e5dbe213910ca976fc03 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 25 Sep 2015 11:43:29 -0700 Subject: [PATCH] Switched parameter name to array binding pattern. --- tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts b/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts index 43881c92816..da407b632ef 100644 --- a/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts +++ b/tests/cases/fourslash/docCommentTemplateClassDeclMethods01.ts @@ -29,7 +29,7 @@ const enum Indentation { //// foo(); //// /*2*/foo(a); //// /*3*/foo(a, b); -//// /*4*/ foo(a, {x: string}, c); +//// /*4*/ foo(a, {x: string}, [c]); //// /*5*/foo(a?, b?, ...args) { //// } ////} @@ -66,7 +66,7 @@ confirmNormalizedJsDoc("4", Indentation.Indented, * * @param a * @param param1 - * @param c + * @param param2 */`); confirmNormalizedJsDoc("5", Indentation.Indented,