diff --git a/docs/topics/multiplatform/multiplatform-compatibility-guide.md b/docs/topics/multiplatform/multiplatform-compatibility-guide.md
index 02532ae3180..cb08a0f9819 100644
--- a/docs/topics/multiplatform/multiplatform-compatibility-guide.md
+++ b/docs/topics/multiplatform/multiplatform-compatibility-guide.md
@@ -326,10 +326,11 @@ kotlin {
val myCustomIntermediateSourceSet by creating {
dependsOn(commonMain)
}
-
- // Option #1. Shorter and more readable, use it when possible:
- val jvmMain by getting { // Usually, the name of the default source set
- // is a simple concatenation of the target name and the compilation name
+
+ // Option #1. Shorter and more readable, use it when possible.
+ // Usually, the name of the default source set
+ // is a simple concatenation of the target name and the compilation name:
+ val jvmMain by getting {
dependsOn(myCustomIntermediateSourceSet)
}
@@ -503,11 +504,11 @@ projects.
In Kotlin 1.9.0, a deprecation warning is introduced when the `android` name is used in Kotlin Multiplatform projects.