From 04c51263601e1721ea37ac730a6316e59df44cb4 Mon Sep 17 00:00:00 2001 From: Vitalii Dmitriev Date: Mon, 5 Feb 2018 22:51:22 +0300 Subject: [PATCH] Intellij -> IntelliJ Change Intellij to IntelliJ. --- basics/plugin_structure/plugin_actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics/plugin_structure/plugin_actions.md b/basics/plugin_structure/plugin_actions.md index 220de1891..4c5242ac5 100644 --- a/basics/plugin_structure/plugin_actions.md +++ b/basics/plugin_structure/plugin_actions.md @@ -2,6 +2,6 @@ title: Plugin Actions --- -The *Intellij Platform* provides the concept of _actions_. An action is a class, derived from the [`AnAction`](upsource:///platform/editor-ui-api/src/com/intellij/openapi/actionSystem/AnAction.java) class, whose `actionPerformed` method is called when the menu item or toolbar button is selected. +The *IntelliJ Platform* provides the concept of _actions_. An action is a class, derived from the [`AnAction`](upsource:///platform/editor-ui-api/src/com/intellij/openapi/actionSystem/AnAction.java) class, whose `actionPerformed` method is called when the menu item or toolbar button is selected. The system of actions allows plugins to add their own items to IDEA menus and toolbars. Actions are organized into groups, which, in turn, can contain other groups. A group of actions can form a toolbar or a menu. Subgroups of the group can form submenus of a menu. You can find detailed information on how to create and register your actions in the [IntelliJ Platform Action System](/basics/action_system.md).