Skip to content

Commit efdeea4

Browse files
brettz9gajus
authored andcommitted
fix: remove additional space after newline with comment asterisk (#113)
1 parent 3e4c84f commit efdeea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules/newlineAfterDescription.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default iterateJsdoc(({
3535
});
3636

3737
// Add the new line
38-
sourceLines.splice(lastDescriptionLine + 1, 0, indent + ' * ');
38+
sourceLines.splice(lastDescriptionLine + 1, 0, indent + ' *');
3939

4040
return fixer.replaceText(jsdocNode, sourceLines.join('\n'));
4141
});

0 commit comments

Comments
 (0)