Skip to content

Commit

Permalink
Fix coloring of predicate types, resolves #2249
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Apr 16, 2023
1 parent a443269 commit 7e2871d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Bug Fixes

- Even more contrast fixes, #2248.
- Fix semantic highlighting for predicate type's parameter references, #2249.

## v0.24.4 (2023-04-16)

Expand Down
2 changes: 1 addition & 1 deletion src/lib/output/themes/default/partials/type.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const typeRenderers: {
return (
<>
{!!type.asserts && <span class="tsd-signature-symbol">asserts </span>}
<span class="tsd-signature-type">{type.name}</span>
<span class="tsd-kind-parameter">{type.name}</span>
{!!type.targetType && (
<>
<span class="tsd-signature-symbol"> is </span>
Expand Down

0 comments on commit 7e2871d

Please sign in to comment.