From 5e09099fc392ef1ef26739b59811a9f1f79640e8 Mon Sep 17 00:00:00 2001 From: viktomas-gitlab <78416057+viktomas-gitlab@users.noreply.github.com> Date: Thu, 13 Jan 2022 16:41:54 +0100 Subject: [PATCH] Fix typos in configurable extension points (#622) --- topics/reference_guide/settings_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/reference_guide/settings_guide.md b/topics/reference_guide/settings_guide.md index 049ae18ed..509d4eea3 100644 --- a/topics/reference_guide/settings_guide.md +++ b/topics/reference_guide/settings_guide.md @@ -104,8 +104,8 @@ Readers are encouraged to review the Javadoc comments for `Configurable`. #### Constructors Implementations must meet several requirements for constructors. -* Application Settings implementations, declared using the [`applicationConfiguration` EP](#declaring-application-settings), must have a default constructor with no arguments. -* Project Settings implementations, declared using the [`projectSettings` EP](#declaring-project-settings), must declare a constructor with a single argument of type [`Project`](upsource:///platform/core-api/src/com/intellij/openapi/project/Project.java). +* Application Settings implementations, declared using the [`applicationConfigurable` EP](#declaring-application-settings), must have a default constructor with no arguments. +* Project Settings implementations, declared using the [`projectConfigurable` EP](#declaring-project-settings), must declare a constructor with a single argument of type [`Project`](upsource:///platform/core-api/src/com/intellij/openapi/project/Project.java). * Beginning in 2020.2, constructor injection (other than for `Project`) is not allowed. For a `Configurable` implementation correctly declared using an EP, the implementation's constructor is not invoked by the IntelliJ Platform until a user chooses the corresponding Settings `displayName` in the Settings Dialog menu.