Skip to content

Commit

Permalink
deprecated inspection message typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Apr 17, 2024
1 parent 30706b5 commit a8f7f26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void visitElement(@NotNull PsiElement element) {
return;
}

String msg = "Element marked as deprecated (since <b>" + deprecatedSince + "</b>)";
String msg = "Element marked as deprecated (since " + deprecatedSince + ")";

if (xmlElement instanceof XmlTag tag) {
registerTagProblems(tag, holder, ProblemHighlightType.LIKE_DEPRECATED, msg);
Expand Down

0 comments on commit a8f7f26

Please sign in to comment.