Skip to content

Commit 304902d

Browse files
authored
fix: spelling and links (#4523)
1 parent 5b16bad commit 304902d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/topics/whatsnew-eap.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ but can still be useful if you want to validate the following cases:
221221
| `PLATFORM_CLASS_MAPPED_TO_KOTLIN` | `java.lang.String` is used instead of `kotlin.String` |
222222
| `ARRAY_EQUALITY_OPERATOR_CAN_BE_REPLACED_WITH_EQUALS` | `arrayOf("") == arrayOf("")` is used instead of `arrayOf("").contentEquals(arrayOf(""))` |
223223
| `REDUNDANT_CALL_OF_CONVERSION_METHOD` | `42.toInt()` is used instead of `42` |
224-
| `USELESS_CALL_ON_NOT_NULL` | ` "".orEmpty()` is used instead of `""` |
224+
| `USELESS_CALL_ON_NOT_NULL` | `"".orEmpty()` is used instead of `""` |
225225
| `REDUNDANT_SINGLE_EXPRESSION_STRING_TEMPLATE` | `"$string"` is used instead of `string` |
226226
| `UNUSED_ANONYMOUS_PARAMETER` | A parameter is passed in the lambda expression but never used |
227227
| `REDUNDANT_VISIBILITY_MODIFIER` | `public class Klass` is used instead of `class Klass` |
@@ -309,7 +309,7 @@ kotlin {
309309

310310
### Improved K2 kapt implementation
311311

312-
> The kapt plugin for the K2 compiler (K2 kapt) is in [Alpha](https://kotlinlang.org/docs/components-stability.html#stability-levels-explained).
312+
> The kapt plugin for the K2 compiler (K2 kapt) is in [Alpha](components-stability.md#stability-levels-explained).
313313
> It may be changed at any time. We would appreciate your feedback in [YouTrack](https://youtrack.jetbrains.com/issue/KT-71439/K2-kapt-feedback).
314314
>
315315
{style="warning"}
@@ -426,7 +426,7 @@ There are two ways to enable the Kotlin Gradle plugin's new model:
426426

427427
## Kotlin/Native
428428

429-
Kotlin %kotlinEapVersion% includes an upgrade for the `iosArm64` target support, improved cinterop cashing process, and other updates.
429+
Kotlin %kotlinEapVersion% includes an upgrade for the `iosArm64` target support, improved cinterop caching process, and other updates.
430430

431431
### iosArm64 is promoted to Tier 1
432432

@@ -448,9 +448,9 @@ all Linux targets.
448448

449449
This update shouldn't affect your code, but if you encounter any issues, please report them to our [issue tracker](http://kotl.in/issue).
450450

451-
### Changes to cashing in cinterop
451+
### Changes to caching in cinterop
452452

453-
In Kotlin %kotlinEapVersion%, we're making changes to the cinterop cashing process. It no longer has the
453+
In Kotlin %kotlinEapVersion%, we're making changes to the cinterop caching process. It no longer has the
454454
[`CacheableTask`](https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/CacheableTask.html) annotation type.
455455
The recommended approach now is to use the [`cacheIf`](https://docs.gradle.org/current/kotlin-dsl/gradle/org.gradle.api.tasks/-task-outputs/cache-if.html)
456456
output type to cache the results of the task.
@@ -677,7 +677,7 @@ explaining that exporting entities via default exports is deprecated.
677677
## Support for non-identifier characters in Kotlin/JS properties
678678

679679
Kotlin/JS previously did not allow
680-
using [names for test methods](https://kotlinlang.org/docs/coding-conventions.html#names-for-test-methods) with spaces
680+
using [names for test methods](coding-conventions.md#names-for-test-methods) with spaces
681681
enclosed in backticks.
682682

683683
Similarly, it was not possible to access JavaScript object properties

0 commit comments

Comments
 (0)