From e7e13ecbfcd5207073cc1ff2b57cbd05ea84b9b0 Mon Sep 17 00:00:00 2001 From: Kanchalai Tanglertsampan Date: Fri, 21 Apr 2017 09:42:19 -0700 Subject: [PATCH] Fix linting --- src/compiler/checker.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index e7939967a4b..ff58a4e67ae 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -13477,13 +13477,13 @@ namespace ts { return getUnionType(map(signatures, getReturnTypeOfSignature), /*subtypeReduction*/ true); } - /** + /** * Look into JSX namespace and then look for container with matching name as nameOfAttribPropContainer. * Get a single property from that container if existed. Report an error if there are more than one property. - * + * * @param nameOfAttribPropContainer a string of value JsxNames.ElementAttributesPropertyNameContainer or JsxNames.ElementChildrenAttributeNameContainer * if other string is given or the container doesn't exist, return undefined. - **/ + */ function getNameFromJsxElementAttributesContainer(nameOfAttribPropContainer: string): string { // JSX const jsxNamespace = getGlobalSymbol(JsxNames.JSX, SymbolFlags.Namespace, /*diagnosticMessage*/ undefined);