Skip to content

Commit b20544b

Browse files
committed
Fix JSDOC parsing
1 parent d1699b8 commit b20544b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export class Parser {
135135
// Use start and end delimiters to find block comments
136136
let regexString = "(^|[ \\t])(";
137137
regexString += this.blockCommentStart;
138-
regexString += "[\\s]?)([\\s\\S]*?)(";
138+
regexString += "[^*][\\s]?)([\\s\\S]*?)(";
139139
regexString += this.blockCommentEnd;
140140
regexString += ")";
141141

0 commit comments

Comments
 (0)