reference_contributor.md: Cleanup

This commit is contained in:
Karol Lewandowski 2024-12-17 13:44:22 +01:00
parent 0c877b7ce9
commit affd74da22

View File

@ -107,7 +107,7 @@ public class SimpleElementFactory {
## Update Grammar and Regenerate the Parser
Now make corresponding changes to the <path>Simple.bnf</path> grammar file by replacing the `property` definition with the lines below.
Don't forget to regenerate the parser after updating the file!
Remember to regenerate the parser after updating the file!
Right-click on the <path>Simple.bnf</path> file and select **Generate Parser Code**.
```bnf
@ -144,7 +144,8 @@ The `SimpleReferenceContributor` implementation is registered using the `com.int
```xml
<extensions defaultExtensionNs="com.intellij">
<psi.referenceContributor language="JAVA"
<psi.referenceContributor
language="JAVA"
implementation="org.intellij.sdk.language.SimpleReferenceContributor"/>
</extensions>
```