From 5ee3cc59b392ed016e55448d83b68273ff72eb4d Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 22 Jun 2018 21:30:55 +0300 Subject: [PATCH] Split summary from description in Char docs --- core/builtins/native/kotlin/Char.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/builtins/native/kotlin/Char.kt b/core/builtins/native/kotlin/Char.kt index 18152d69026..2d50bf2e594 100644 --- a/core/builtins/native/kotlin/Char.kt +++ b/core/builtins/native/kotlin/Char.kt @@ -18,11 +18,13 @@ package kotlin /** * Represents a 16-bit Unicode character. + * * On the JVM, non-nullable values of this type are represented as values of the primitive type `char`. */ public class Char private constructor() : Comparable { /** * Compares this value with the specified value for order. + * * Returns zero if this value is equal to the specified other value, a negative number if it's less than other, * or a positive number if it's greater than other. */