From 5141c3f63aaf9e285d335987ec32d4e193c44d3e Mon Sep 17 00:00:00 2001 From: Martin Bonnin Date: Fri, 10 Apr 2026 00:18:06 +0200 Subject: [PATCH] Improve the KDoc of kotlin.version() --- .../src/main/kotlin/tapmoc/TapmocExtension.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tapmoc-gradle-plugin/src/main/kotlin/tapmoc/TapmocExtension.kt b/tapmoc-gradle-plugin/src/main/kotlin/tapmoc/TapmocExtension.kt index 27ff7f8..69ff453 100644 --- a/tapmoc-gradle-plugin/src/main/kotlin/tapmoc/TapmocExtension.kt +++ b/tapmoc-gradle-plugin/src/main/kotlin/tapmoc/TapmocExtension.kt @@ -16,13 +16,13 @@ interface TapmocExtension { /** * Configures the version of Kotlin to target. * This version is used as: + * - kotlin-stdlib JVM version * - languageVersion * - apiVersion - * - coreLibrariesVersion - * * * @param version the version of Kotlin to target. - * This is a string in case you need a specific minor version in `coreLibrariesVersion` + * languageVersion and apiVersion only use the `major.minor` (e.g "1.9") of [version]. + * `kotlin-stdlib` JVM version uses [version] verbatim. * * Examples: "1.9.0", "1.9.22", "2.0.21", "2.1.20", ... */