diff --git a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md
index 36e10ba58..4109f3ac4 100644
--- a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md
+++ b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin_faq.md
@@ -262,14 +262,14 @@ To fix that issue, upgrade the Java version to the latest patch available of the
It is possible to add a dependency on a plugin available in the file system — like a plugin update downloaded manually from JetBrains Marketplace or built separately in another project.
-To configure the dependency, add the `File` instance to the [`intellij.plugins`](tools_gradle_intellij_plugin.md#intellij-extension-plugins) property and point it to the `lib` directory inside the extracted plugin's directory or any other parent that contains plugin's .jar files.
+To configure the dependency, add the `File` instance to the [`intellij.plugins`](tools_gradle_intellij_plugin.md#intellij-extension-plugins) property and point it to the extracted plugin's directory which contains the lib directory.
```kotlin
intellij {
- plugins.set(listOf(file("/path/to/plugin/lib/")))
+ plugins.set(listOf(file("/path/to/plugin/")))
}
```
@@ -278,14 +278,14 @@ intellij {
```groovy
intellij {
- plugins = [file("/path/to/plugin/lib/")]
+ plugins = [file("/path/to/plugin/")]
}
```
-It is also possible to refer to the sandbox directory of another Gradle project — to do that, point to the /projects/plugin-name/build/idea-sandbox/plugins/plugin-name/lib/ directory.
+It is also possible to refer to the sandbox directory of another Gradle project — to do that, point to the /projects/plugin-name/build/idea-sandbox/plugins/plugin-name/ directory.
### Kotlin compiler throws `Out of memory. Java heap space` error