From 2106274fa38a21316cc528433bf8e5ef8641afec Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Mon, 30 Sep 2019 20:02:36 +0300 Subject: [PATCH] Minor: fix Charset type reference in kdoc #KT-34086 Fixed --- libraries/stdlib/jvm/src/kotlin/text/Charsets.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/jvm/src/kotlin/text/Charsets.kt b/libraries/stdlib/jvm/src/kotlin/text/Charsets.kt index e6bff243858..c77f6835ed4 100644 --- a/libraries/stdlib/jvm/src/kotlin/text/Charsets.kt +++ b/libraries/stdlib/jvm/src/kotlin/text/Charsets.kt @@ -17,7 +17,7 @@ import java.nio.charset.* public inline fun charset(charsetName: String): Charset = Charset.forName(charsetName) /** - * Constant definitions for the standard [charsets](Charset). These + * Constant definitions for the standard [charsets][Charset]. These * charsets are guaranteed to be available on every implementation of the Java * platform. */