From e613c0a93ed826c3e1b2db0c29a1b45eba79a542 Mon Sep 17 00:00:00 2001 From: lukellmann Date: Sat, 2 Mar 2024 21:22:53 +0100 Subject: [PATCH] Fix typo in AtomicFU property I added this property in #894 to ensure we'd be using the AtomicFU compiler plugin [1] for native when #855 is merged. However, it seems like a typo slipped through: I think I copied the property from the description of the PR that added this feature to AtomicFU [2]. Turns out there was a typo in that description. The property is kotlinx.atomicfu.enableNativeIrTransformation, not kotlinx.atomicfu.enableNativeIrTransformations as can be seen in the source code [3]. [1] https://github.com/Kotlin/kotlinx-atomicfu/blob/0.23.1/README.md#atomicfu-compiler-plugin [2] https://github.com/Kotlin/kotlinx-atomicfu/pull/363 [3] https://github.com/Kotlin/kotlinx-atomicfu/blob/0.23.1/atomicfu-gradle-plugin/src/main/kotlin/kotlinx/atomicfu/plugin/gradle/AtomicFUGradlePlugin.kt#L38 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index afdbf760d9d..b395cf350b1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,4 +10,4 @@ kotlin.code.style=official # https://github.com/Kotlin/kotlinx-atomicfu#atomicfu-compiler-plugin kotlinx.atomicfu.enableJvmIrTransformation=true kotlinx.atomicfu.enableJsIrTransformation=true -kotlinx.atomicfu.enableNativeIrTransformations=true +kotlinx.atomicfu.enableNativeIrTransformation=true