Skip to content

Commit

Permalink
Remove duplicate "in comment"
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jun 27, 2022
1 parent 959221e commit dc23d40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Unreleased

### Bug Fixes

- Removed duplicate "in comment" warning when parsing comments, #1964.

## v0.23.1 (2022-06-26)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion src/lib/converter/comments/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function blockContent(

case TokenSyntaxKind.CloseBrace:
// Unmatched closing brace, generate a warning, and treat it as text.
warning(`Unmatched closing brace in comment`);
warning(`Unmatched closing brace`);
content.push({ kind: "text", text: next.text });
break;

Expand Down

0 comments on commit dc23d40

Please sign in to comment.