fix typos and incorrect links in javadoc

GitOrigin-RevId: b0a6236002781f491a71059c7d96ee625717bfa0
This commit is contained in:
Alexey Kudravtsev
2024-02-01 15:23:55 +01:00
committed by intellij-monorepo-bot
parent f5676c2811
commit c77511e324

View File

@@ -19,8 +19,8 @@ public interface JvmGroupIntentionAction extends IntentionAction {
/**
* Given two actions, <i>Create method 'foo' in 'SomeJavaClass'</i>
* and <i>Create function 'foo' in 'SomeKotlinClass'</i>,
* 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. <i>Create method 'foo'</i> for target class in Java
* and <i>Create function 'foo'</i> for target class in Kotlin
* <p>
* 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