Skip to content

Commit

Permalink
fix: add the correct jsdoc closing marker
Browse files Browse the repository at this point in the history
  • Loading branch information
headlessNode committed Nov 13, 2024
1 parent b8259d3 commit f81e414
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function main( context ) {
*/
function fix( fixer ) {
var fixed = replace( comment, RE_LEADING_SPACE, '*' );
fixed = '/*' + fixed + '/';
fixed = '/*' + fixed + '*/';
return fixer.replaceTextRange( range, fixed );
}
}
Expand Down

0 comments on commit f81e414

Please sign in to comment.