Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b8fb86a

Browse files
committedMar 21, 2016
Fix broken links and remove author template
1 parent 10140f3 commit b8fb86a

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed
 

‎code_samples/gradle_plugin_demo/src/main/java/HelloAction.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
import com.intellij.openapi.project.Project;
33
import com.intellij.openapi.ui.Messages;
44

5-
/**
6-
* Created by breandan on 11/25/2015.
7-
*/
85
public class HelloAction extends AnAction {
96
public HelloAction() {
107
super("Hello");

‎tutorials/custom_language_support/annotator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Annotator helps highlight and annotate any code based on specific rules.
99
In this tutorial we will annotate usages of our properties within Java code.
1010
Let's consider a literal which starts with *"simple:"* as a usage of our property.
1111

12-
```
12+
```java
1313
{% include /code_samples/simple_language_plugin/src/com/simpleplugin/SimpleAnnotator.java %}
1414
```
1515

‎tutorials/custom_language_support/reference_contributor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static PsiElement getNameIdentifier(SimpleProperty element) {
5151
### 10.3. Define an element factory
5252

5353
```java
54-
{% include /code_samples/simpleplugin/psi/impl/SimpleElementFactory.java %}
54+
{% include /code_samples/simple_language_plugin/src/com/simpleplugin/psi/SimpleElementFactory.java %}
5555
```
5656

5757
### 10.4. Update grammar and regenerate the parser

0 commit comments

Comments
 (0)
Please sign in to comment.