From c77511e32407779c1cfe86755b3815e218f3844a Mon Sep 17 00:00:00 2001 From: Alexey Kudravtsev Date: Thu, 1 Feb 2024 15:23:55 +0100 Subject: [PATCH] fix typos and incorrect links in javadoc GitOrigin-RevId: b0a6236002781f491a71059c7d96ee625717bfa0 --- .../intellij/lang/jvm/actions/JvmGroupIntentionAction.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/java/java-analysis-api/src/com/intellij/lang/jvm/actions/JvmGroupIntentionAction.java b/java/java-analysis-api/src/com/intellij/lang/jvm/actions/JvmGroupIntentionAction.java index fc8b85820de0..c04fc63b9229 100644 --- a/java/java-analysis-api/src/com/intellij/lang/jvm/actions/JvmGroupIntentionAction.java +++ b/java/java-analysis-api/src/com/intellij/lang/jvm/actions/JvmGroupIntentionAction.java @@ -19,8 +19,8 @@ public interface JvmGroupIntentionAction extends IntentionAction { /** * Given two actions, Create method 'foo' in 'SomeJavaClass' * and Create function 'foo' in 'SomeKotlinClass', - * we want to display them as a single action with ability to choose target class later. - * In this case these actions should have {@link #equals equal} action groups. + * we want to display them as a single action with the ability to choose target class later. + * In this case these actions should have {@link Object#equals equal} action groups. */ @NotNull JvmActionGroup getActionGroup(); @@ -32,7 +32,7 @@ public interface JvmGroupIntentionAction extends IntentionAction { * e.g. Create method 'foo' for target class in Java * and Create function 'foo' for target class in Kotlin *

- * This method is accessed only if {@link #isAvailable)} returned {@code true}. + * This method is accessed only if {@link #isAvailable} returned {@code true}. */ @Nls(capitalization = Nls.Capitalization.Sentence) @NotNull