From adc19b433ee052d4edcc181a326e14012d87ca70 Mon Sep 17 00:00:00 2001 From: Matthew Brener Date: Wed, 22 Mar 2017 20:29:39 +1100 Subject: [PATCH] its --> it's in Char.kt (#1041) --- core/builtins/native/kotlin/Char.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/builtins/native/kotlin/Char.kt b/core/builtins/native/kotlin/Char.kt index ba601a6fb1b..126bab69d3c 100644 --- a/core/builtins/native/kotlin/Char.kt +++ b/core/builtins/native/kotlin/Char.kt @@ -23,8 +23,8 @@ package kotlin 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 its less than other, - * or a positive number if its greater than other. + * 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. */ public override fun compareTo(other: Char): Int