From 7e572e176cd4e5b3e7242de1fd341b7cfb496e28 Mon Sep 17 00:00:00 2001 From: Martin Bonnin Date: Fri, 10 Apr 2026 22:35:16 +0200 Subject: [PATCH] Tweak the docs --- docs/src/content/docs/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/content/docs/index.mdx b/docs/src/content/docs/index.mdx index 297fe1a..5ed74ee 100644 --- a/docs/src/content/docs/index.mdx +++ b/docs/src/content/docs/index.mdx @@ -10,7 +10,7 @@ Tapmoc helps you configure your Java/Kotlin compatibility flags: ```kotlin tapmoc { java(17) // build for Java 17, including source, target and api compatibility - kotlin("2.1.0") // build for kotlin 2.1.0, including language and api version + kotlin("2.1.0") // build for kotlin 2.1.0, including kotlin-stdlib, language, and api version } ``` @@ -59,7 +59,7 @@ plugins { tapmoc { // Java takes an int for simplicity java(17) - // Kotlin takes a string so you have more control of the patch release. + // Kotlin takes a string to control the kotlin-stdlib version. // languageVersion/apiVersion are configured with the minor version only. kotlin("2.1.0")