diff --git a/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java b/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java index f89ad2c558e6..c9f3a996bec7 100644 --- a/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java +++ b/platform/lang-api/src/com/intellij/codeInsight/lookup/LookupElement.java @@ -30,8 +30,9 @@ import java.util.Set; /** * A typical way to create lookup element is to use {@link com.intellij.codeInsight.lookup.LookupElementBuilder}. * Another way is to subclass it. Use the latter way only if you need it to implement some additional interface, to modify equals/hashCode - * or other advanced logic + * or other advanced logic. * + * @see com.intellij.codeInsight.completion.PrioritizedLookupElement * @author peter */ public abstract class LookupElement extends UserDataHolderBase {