From 16b486d7f037ac098a137d69e63d05addabef906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Thu, 9 Nov 2023 12:13:50 +0100 Subject: [PATCH] basic_action_system.md: minor --- topics/basics/basic_action_system.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/basics/basic_action_system.md b/topics/basics/basic_action_system.md index 63c8b8cac..03b1d9d12 100644 --- a/topics/basics/basic_action_system.md +++ b/topics/basics/basic_action_system.md @@ -434,6 +434,6 @@ Sometimes, it is required to execute actions programmatically, e.g., executing a Executing actions can be achieved with [`ActionUtils.invokeAction()`](%gh-ic%/platform/platform-api/src/com/intellij/openapi/actionSystem/ex/ActionUtil.java). > Executing actions programmatically should be avoided whenever possible. -> If an action executed programmatically is under your control, extract its logic to a service or util and call it directly. +> If an action executed programmatically is under your control, extract its logic to a [service](plugin_services.md) or utility class and call it directly. > {style="warning"}