From f531f2f2f288c45c892b1f8b2e55732fa3cfe89b Mon Sep 17 00:00:00 2001 From: Anna Bulenkova Date: Mon, 12 Jan 2015 10:58:24 +0100 Subject: [PATCH] [md] review - style issue --- tutorials/editor_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/editor_basics.md b/tutorials/editor_basics.md index f91ee8fbb..85137f452 100644 --- a/tutorials/editor_basics.md +++ b/tutorials/editor_basics.md @@ -110,7 +110,7 @@ This type of the editor handler should be registered as an extension point Two types of handlers are supported: the ones which are executed once, and the ones which are executed for each caret. Examples of already implemented handlers can be found in -[this package] (https://github.com/JetBrains/intellij-community/tree/master/platform/lang-impl/src/com/intellij/codeInsight/editorActions), +[editorActions package] (https://github.com/JetBrains/intellij-community/tree/master/platform/lang-impl/src/com/intellij/codeInsight/editorActions), e.g. the class [CopyHandler.java] (https://github.com/JetBrains/intellij-community/blob/master/platform/lang-impl/src/com/intellij/codeInsight/editorActions/CopyHandler.java). To implement the logic you need to override ```implement()``` action.