ToolWindowFactory: fix javadoc formatting
authorYann Cébron <yann.cebron@jetbrains.com>
Wed, 12 Aug 2020 16:00:15 +0000 (18:00 +0200)
committerintellij-monorepo-bot <intellij-monorepo-bot-no-reply@jetbrains.com>
Wed, 12 Aug 2020 16:17:57 +0000 (16:17 +0000)
GitOrigin-RevId: f7f633d4330bd81262241c317328faba25079bd4

platform/platform-api/src/com/intellij/openapi/wm/ToolWindowFactory.java

index 0043be6075aa820b659ed5d8edbb62412d425a45..05bfa0e9a59cc7c35ab40984529bf712e31827ae 100644 (file)
@@ -9,9 +9,9 @@ import org.jetbrains.annotations.NotNull;
  * Please implement {@link com.intellij.openapi.project.DumbAware} marker interface to indicate that the tool window content should be
  * available during the indexing process.
  * <p/>
- * To localize tool window stripe title, add key <code>toolwindow.stripe.yourToolWindowId.replace(" ", "_")</code> to plugin's resource bundle.
+ * To localize tool window stripe title, add key {@code toolwindow.stripe.yourToolWindowId.replace(" ", "_")} to plugin's resource bundle.
  * <p/>
- * See https://www.jetbrains.org/intellij/sdk/docs/user_interface_components/tool_windows.html
+ * See <a href="https://www.jetbrains.org/intellij/sdk/docs/user_interface_components/tool_windows.html">Tool Windows</a> in SDK Docs.
  */
 public interface ToolWindowFactory {
   default boolean isApplicable(@NotNull Project project) {