From fd8e4cef1966b3c67ef6ddf9328d0c7bae49a17a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 21 Mar 2023 13:43:06 +0100 Subject: [PATCH] explore_api.md: 2.6 clarify/strengthen wording --- topics/appendix/resources/explore_api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/appendix/resources/explore_api.md b/topics/appendix/resources/explore_api.md index ed1780d6a..29fb71b91 100644 --- a/topics/appendix/resources/explore_api.md +++ b/topics/appendix/resources/explore_api.md @@ -144,12 +144,12 @@ If you want to implement a functionality that is similar to an existing IDE feat ### 2.6 Refrain from Using Internal Classes -As a general remark, the use of internal classes is strongly discouraged (i.e. classes ending with `Impl` in their name, +As a general remark, the use of implementation classes is strongly discouraged (i.e. classes ending with `Impl` in their name, located under `impl` package, or included in *-impl.jar). Also, API annotated with [`org.jetbrains.annotations.ApiStatus.Internal`](https://github.com/JetBrains/java-annotations/blob/master/common/src/main/java/org/jetbrains/annotations/ApiStatus.java) -should not be used, see [](api_internal.md) for more details and replacements. +must not be used, see [](api_internal.md) for more details and replacements. ## 3 Tools and References