From dcae0277f1d9366189c54b7e97b9de1950ec2fb9 Mon Sep 17 00:00:00 2001 From: James Strachan Date: Mon, 26 Mar 2012 10:56:51 +0100 Subject: [PATCH] updated the comments a little --- libraries/stdlib/src/Ordering.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/stdlib/src/Ordering.kt b/libraries/stdlib/src/Ordering.kt index 546fe9fff82..071151890d8 100644 --- a/libraries/stdlib/src/Ordering.kt +++ b/libraries/stdlib/src/Ordering.kt @@ -23,6 +23,7 @@ inline fun compareBy(a: T?, b: T?, vararg functions: Function1): Int /** * Compares the two values which may be [[Comparable]] otherwise + * they are compared via [[#equals()]] and if they are not the same then * the [[#hashCode()]] method is used as the difference */ inline fun compareValues(a: T?, b: T?): Int {