[Gradle][Minor] KotlinTargetHierarchyDsl: Fix doc pointing to old function

KT-56204
This commit is contained in:
Sebastian Sellmair
2023-01-26 10:10:58 +01:00
committed by Space Team
parent ca859c0132
commit 294014a85d
@@ -24,7 +24,7 @@ interface KotlinTargetHierarchyDsl {
*
* ```kotlin
* kotlin {
* targets.hierarchy.default() // <- position of this call is not relevant!
* targetHierarchy.default() // <- position of this call is not relevant!
*
* iosX64()
* iosArm64()
@@ -66,7 +66,7 @@ interface KotlinTargetHierarchyDsl {
*
* ```kotlin
* kotlin {
* targets.hierarchy.default { target ->
* targetHierarchy.default { target ->
* group("native") { // <- we can re-declare already existing groups and connect children to it!
* group("unixLike") {
* withLinux()