Skip to content

Commit

Permalink
Fix error message code example
Browse files Browse the repository at this point in the history
  • Loading branch information
ippschi-md authored and autonomousapps committed Dec 3, 2024
1 parent 6e8d8d5 commit 9fed26a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ abstract class GlobalDslService @Inject constructor(
// settings.gradle[.kts]
plugins {
id("${BuildHealthPlugin.ID}") version "<<version>>"
id("org.jetbrains.kotlin.<jvm|android|etc>)" version "<<version>>" apply false
id("org.jetbrains.kotlin.<jvm|android|etc>") version "<<version>>" apply false
}
""".trimIndent()
} else {
Expand All @@ -110,7 +110,7 @@ abstract class GlobalDslService @Inject constructor(
// root build.gradle[.kts]
plugins {
id("$DEPENDENCY_ANALYSIS_PLUGIN") version "<<version>>"
id("org.jetbrains.kotlin.<jvm|android|etc>)" version "<<version>>" apply false
id("org.jetbrains.kotlin.<jvm|android|etc>") version "<<version>>" apply false
}
""".trimIndent()
}
Expand Down

0 comments on commit 9fed26a

Please sign in to comment.