From 1bfb044419d526a223a55270dbf7eb343ab9c64f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Thu, 22 Sep 2022 17:52:13 +0200 Subject: [PATCH] documentation_provider.md: cleanup --- .../tutorials/custom_language_support/documentation_provider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/tutorials/custom_language_support/documentation_provider.md b/topics/tutorials/custom_language_support/documentation_provider.md index 56480aae2..f9f0c6704 100644 --- a/topics/tutorials/custom_language_support/documentation_provider.md +++ b/topics/tutorials/custom_language_support/documentation_provider.md @@ -62,7 +62,7 @@ public @Nullable String generateDoc(PsiElement element, Now, we set a breakpoint in our dummy implementation, debug the plugin, and call View | Quick Documentation for the Simple property both in the Java file and the Simple file. -We do this by placing the cursor over the key and [pressing the shortcut](https://www.jetbrains.com/help/idea/viewing-reference-information.html#view-quick-docs) +We do this by placing the cursor over the key and invoking View | Quick Documentation for showing the documentation. In both cases, we find that the element provided is `SimplePropertyImpl`, which is exactly what we hoped for.