Skip to content

Commit c2bcf33

Browse files
committed
chore: minor fixes to whatsnew22.md
1 parent 5810c84 commit c2bcf33

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/topics/whatsnew/whatsnew22.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ fun main() {
562562
### Improved Java interop with inline value classes
563563
<primary-label ref="experimental-general"/>
564564
565-
Kotlin 2.2.0 introduces a new experimental annotation: `@JvmExposeBoxed`. This annotation makes it easier to consume [inline value classes](inline-classes.md) from Java.
565+
Kotlin 2.2.0 introduces a new experimental annotation: [`@JvmExposeBoxed`](https://kotlinlang.org/api/core/kotlin-stdlib/kotlin.jvm/-jvm-expose-boxed/). This annotation makes it easier to consume [inline value classes](inline-classes.md) from Java.
566566
567567
By default, Kotlin compiles inline value classes to use **unboxed representations**, which are more performant but often
568568
hard or even impossible to use from Java. For example:
@@ -991,7 +991,7 @@ kotlin {
991991
}
992992
```
993993

994-
Explore the [KGP API reference](https://kotlinlang.org/api/kotlin-gradle-plugin/kotlin-gradle-plugin-api/org.jetbrains.kotlin.gradle.dsl/-abi/) to learn more about configuring the binary compatibility validator.
994+
Explore the [KGP API reference](https://kotlinlang.org/api/kotlin-gradle-plugin/kotlin-gradle-plugin-api/org.jetbrains.kotlin.gradle.dsl.abi/) to learn more about configuring the binary compatibility validator.
995995

996996
#### Multiplatform limitations
997997

@@ -1099,16 +1099,16 @@ of new features, such as [support for the Kotlin daemon](https://youtrack.jetbra
10991099

11001100
For the KGP, using the BTA already has the following benefits:
11011101

1102-
* [Improved in process compiler execution strategy](#improved-in-process-compiler-execution-strategy)
1102+
* [Improved "in process" compiler execution strategy](#improved-in-process-compiler-execution-strategy)
11031103
* [More flexibility to configure different compiler versions from Kotlin](#flexibility-to-configure-different-compiler-versions-from-kotlin)
11041104

1105-
### Improved in process compiler execution strategy
1105+
### Improved "in process" compiler execution strategy
11061106

11071107
The KGP supports three [Kotlin compiler execution strategies](gradle-compilation-and-caches.md#defining-kotlin-compiler-execution-strategy).
1108-
The in process strategy, which runs the compiler
1108+
The "in process" strategy, which runs the compiler
11091109
inside the Gradle daemon process, previously didn't support incremental compilation.
11101110
1111-
Now, using the BTA, the in-process strategy **does** support incremental compilation. To use it, add the following
1111+
Now, using the BTA, the "in-process" strategy **does** support incremental compilation. To use it, add the following
11121112
property to your `gradle.properties` file:
11131113
11141114
```kotlin
@@ -1298,7 +1298,7 @@ If you encounter any issues that make you disable these feature flags, please re
12981298
in active development for a long time, and there are no plans to maintain it further due to its relatively small user base.
12991299

13001300
We plan to remove Ant support in 2.3.0. However, Kotlin remains open to [contribution](contribute.md). If you're
1301-
interested in becoming an external maintainer for Ant, leave a comment with the jetbrains-team visibility setting in [this YouTrack issue](https://youtrack.jetbrains.com/issue/KT-75875/).
1301+
interested in becoming an external maintainer for Ant, leave a comment with the "jetbrains-team" visibility setting in [this YouTrack issue](https://youtrack.jetbrains.com/issue/KT-75875/).
13021302
13031303
* Kotlin 2.2.0 raises the deprecation level of the [`kotlinOptions{}` block in Gradle to error](compatibility-guide-22.md#deprecate-kotlinoptions-dsl).
13041304
Use the `compilerOptions{}` block instead. For guidance on updating your build scripts, see [Migrate from `kotlinOptions{}` to `compilerOptions{}`](gradle-compiler-options.md#migrate-from-kotlinoptions-to-compileroptions).

0 commit comments

Comments
 (0)