diff --git a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md
index 973b7d60f..d7a0b7ce6 100644
--- a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md
+++ b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md
@@ -745,14 +745,14 @@ Default value
#### javac2
{#tasks-instrumentcode-javac2}
-Path to the `javac2.jar` file of the IntelliJ IDEA.
+Path to the javac2.jar file of the IntelliJ IDEA.
{style="narrow"}
Type
: `File`
Default value
-: `lib/javac2.jar` resolved in [`instrumentCode.ideaDependency`](#tasks-instrumentcode-ideadependency)
+: lib/javac2.jar resolved in [`instrumentCode.ideaDependency`](#tasks-instrumentcode-ideadependency)
#### compilerVersion
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 f8439ae3b..ca70a4348 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
@@ -1,7 +1,7 @@
-# Gradle IntelliJ Plugin – FAQ
-
+# Gradle IntelliJ Plugin – FAQ
+
FAQ for using Gradle IntelliJ Plugin
### How to target 2022.3 platform
@@ -262,7 +262,7 @@ 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 `lib` directory inside the extracted plugin's directory or any other parent that contains plugin's files.
diff --git a/topics/tutorials/using_kotlin.md b/topics/tutorials/using_kotlin.md
index 0b2590669..7974b094a 100644
--- a/topics/tutorials/using_kotlin.md
+++ b/topics/tutorials/using_kotlin.md
@@ -124,7 +124,7 @@ See [Dependency on the standard library](https://kotlinlang.org/docs/gradle.html
The Kotlin Gradle plugin supports [incremental compilation](https://kotlinlang.org/docs/gradle-compilation-and-caches.html#incremental-compilation), which allows tracking changes in the source files so the compiler handles only updated code.
The Kotlin `1.8.20` release has a [new incremental compilation approach](https://kotlinlang.org/docs/gradle-compilation-and-caches.html#a-new-approach-to-incremental-compilation) enabled by default.
-Unfortunately, it is not compatible with the IntelliJ Platform — when reading large JAR files (like `app.js` or `3rd-party-rt.jar`), leading to the `Out of Memory` exception:
+Unfortunately, it is not compatible with the IntelliJ Platform — when reading large JAR files (like app.jar or 3rd-party-rt.jar), leading to the `Out of Memory` exception:
```
Execution failed for task ':compileKotlin'.
@@ -139,7 +139,7 @@ To avoid this exception, add the following line to the gradle.properties
kotlin.incremental.useClasspathSnapshot=false
```
-You can find the current state of the issue in [KT-57757 Reduce classpath snapshotter memory consumption](https://youtrack.jetbrains.com/issue/KT-57757/Reduce-classpath-snapshotter-memory-consumption).
+You can find the current state of the issue in [KT-57757](https://youtrack.jetbrains.com/issue/KT-57757/Reduce-classpath-snapshotter-memory-consumption).
### Other Bundled Kotlin Libraries