From 09d25bd18c250d34cde39f1b06e4bcfaf78bc76d Mon Sep 17 00:00:00 2001 From: retlat Date: Sat, 18 Nov 2017 16:23:42 +0900 Subject: [PATCH] Fix package name. --- tutorials/custom_language_support/go_to_symbol_contributor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/custom_language_support/go_to_symbol_contributor.md b/tutorials/custom_language_support/go_to_symbol_contributor.md index c582c93ed..d5f7741c9 100644 --- a/tutorials/custom_language_support/go_to_symbol_contributor.md +++ b/tutorials/custom_language_support/go_to_symbol_contributor.md @@ -8,7 +8,7 @@ title: 13. Go To Symbol Contributor To specify how a PSI element looks like in the *Go To Symbol* popup window, *Structure* tool window or another components, it should implement *getPresentation* method. -This means we need to define this method in our utility *com.simpleplugin.parser.SimplePsiImplUtil* and regenerate the parser and PSI classes. +This means we need to define this method in our utility *com.simpleplugin.psi.impl.SimplePsiImplUtil* and regenerate the parser and PSI classes. ```java public static ItemPresentation getPresentation(final SimpleProperty element) {