From 9c59045f486b2336550282cd969eeb9fa95877bf Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Fri, 20 Nov 2015 18:47:23 +0300 Subject: [PATCH] Rename parameters: CharSequence --- core/builtins/native/kotlin/CharSequence.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/builtins/native/kotlin/CharSequence.kt b/core/builtins/native/kotlin/CharSequence.kt index 1067493c180..d7040f7950e 100644 --- a/core/builtins/native/kotlin/CharSequence.kt +++ b/core/builtins/native/kotlin/CharSequence.kt @@ -33,8 +33,8 @@ public interface CharSequence { /** * Returns a subsequence of this sequence. * - * @param start the start index (inclusive). - * @param end the end index (exclusive). + * @param startIndex the start index (inclusive). + * @param endIndex the end index (exclusive). */ - public fun subSequence(start: Int, end: Int): CharSequence + public fun subSequence(startIndex: Int, endIndex: Int): CharSequence }