Skip to content

Commit

Permalink
chore: fix absolute links to relative (JetBrains#2897)
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrakovichVictoria authored Apr 13, 2022
1 parent d1a8b2b commit c452ae1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/topics/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ val a = arrayOf(1, 2, 3)
val list = asList(-1, 0, *a, 4)
```

If you want to pass a [primitive type array](https://kotlinlang.org/docs/basic-types.html#primitive-type-arrays)
If you want to pass a [primitive type array](basic-types.md#primitive-type-arrays)
into `vararg`, you need to convert it to a regular (typed) array using the `toTypedArray()` function:

```kotlin
Expand Down
2 changes: 1 addition & 1 deletion docs/topics/jvm/java-interop.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fun main() {

The upper bound of `Derived` is set to `Base<String?>`, which is different from `Base<String>`.

Learn more about [Java generics in Kotlin](https://kotlinlang.org/docs/java-interop.html#java-generics-in-kotlin).
Learn more about [Java generics in Kotlin](java-interop.md#java-generics-in-kotlin).

#### Type parameters

Expand Down
2 changes: 1 addition & 1 deletion docs/topics/whatsnew15.md
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ The property [`Char.category`](https://kotlinlang.org/api/latest/jvm/stdlib/kotl
enum class [`CharCategory`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-char-category/), which indicates
a char's general category according to Unicode, are now also available in multiplatform projects.

[Learn more about characters](https://kotlinlang.org/docs/basic-types.html#characters).
[Learn more about characters](basic-types.md#characters).

### New collections function firstNotNullOf()

Expand Down

0 comments on commit c452ae1

Please sign in to comment.