syntax_highlighting_and_error_highlighting.md: Fix code snippet formatting

This commit is contained in:
Karol Lewandowski 2023-06-06 08:20:53 +02:00
parent d0c7c8f8ac
commit b720795b2b

View File

@ -98,7 +98,7 @@ To highlight a region of text as a warning or error:
<tab title="2020.1 and later" group-key="2020.1">
```java
holder.newAnnotation(HighlightSeverity.WARNING,"Invalid code") // or HighlightSeverity.ERROR
holder.newAnnotation(HighlightSeverity.WARNING, "Invalid code") // or HighlightSeverity.ERROR
.withFix(new MyFix(psiElement))
.create();
```