From a356e5cbbf9c93ee4695bb7a71587f66f7cdf888 Mon Sep 17 00:00:00 2001 From: Anna Bulenkova Date: Tue, 20 Jan 2015 10:15:08 +0100 Subject: [PATCH] typo --- tutorials/action_system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/action_system.md b/tutorials/action_system.md index 3c91e4b99..8e037de33 100644 --- a/tutorials/action_system.md +++ b/tutorials/action_system.md @@ -1,6 +1,6 @@ IntelliJ Action System ========== -Action system provides an option to handle certain events in a desired way. Action can either be simply a responce to some state, +Action system provides an option to handle certain events in a desired way. Action can either be simply a response to some state, or be bound to UI element and could be invoked on demand. These UI elements include main menu, context menus and toolbars. An action is technically a class, derived from the [AnAction] (https://github.com/JetBrains/intellij-community/blob/master/platform/editor-ui-api/src/com/intellij/openapi/actionSystem/AnAction.java) class. To update the state of the action, the method AnAction.update() is periodically called by IDEA.