Skip to content

Commit 0f73a0a

Browse files
committed
Fix jsdoc lint
1 parent be7be59 commit 0f73a0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/utilities.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4008,7 +4008,8 @@ namespace ts {
40084008
* Gets the return type node for the node if provided via JSDoc's return tag.
40094009
*
40104010
* @remarks `getJSDocReturnTag` just gets the whole JSDoc tag. This function
4011-
* gets the type from inside the braces. */
4011+
* gets the type from inside the braces.
4012+
*/
40124013
export function getJSDocReturnType(node: Node): TypeNode | undefined {
40134014
const returnTag = getJSDocReturnTag(node);
40144015
return returnTag && returnTag.typeExpression && returnTag.typeExpression.type;

0 commit comments

Comments
 (0)