diff --git a/docs/topics/components-stability.md b/docs/topics/components-stability.md index 372fd57ad9e..d99f34a0af1 100644 --- a/docs/topics/components-stability.md +++ b/docs/topics/components-stability.md @@ -70,7 +70,7 @@ We make sure to document precisely which subcomponents are not stable. We also d | Kotlin/JVM (IR-based) | Stable | 1.5 | | | Kotlin/JS (IR-based) | Stable | 1.8 | | | Kotlin/Native Runtime | Beta | 1.3 | | -| Kotlin/Native memory manager | Beta | 1.7.20 | Same stability level as Kotlin/Native | +| Kotlin/Native memory manager | Beta | 1.7.20 | | | klib binaries | Beta | 1.9.0 | | | Kotlin Multiplatform | Beta | 1.7.20 | | | Kotlin/Native interop with C and Objective C | Beta | 1.3 | | diff --git a/docs/topics/whatsnew19.md b/docs/topics/whatsnew19.md index 5d76b22f573..7d395bd3194 100644 --- a/docs/topics/whatsnew19.md +++ b/docs/topics/whatsnew19.md @@ -432,10 +432,9 @@ kotlin { ### Compiler option for C interop implicit integer conversions -As we continue to work towards the stabilization of Kotlin/Native, we have introduced a compiler option for C interop -that allows you to use implicit integer conversions. Previously it wasn't necessary to configure a compiler option to -use implicit integer conversions. After careful consideration, we've introduced this compiler option to prevent -unintentional use as this feature still has room for improvement and our aim is to have an API of the highest quality. +We have introduced a compiler option for C interop that allows you to use implicit integer conversions. After careful +consideration, we've introduced this compiler option to prevent unintentional use as this feature still has room for +improvement and our aim is to have an API of the highest quality. In this code sample an implicit integer conversion allows `options = 0` even though [`options`](https://developer.apple.com/documentation/foundation/nscalendar/options) has unsigned type `UInt` and `0` is signed.