Rename parameters: CharSequence

This commit is contained in:
Ilya Gorbunov
2015-11-20 18:47:23 +03:00
parent 2ed277a863
commit 9c59045f48
+3 -3
View File
@@ -33,8 +33,8 @@ public interface CharSequence {
/** /**
* Returns a subsequence of this sequence. * Returns a subsequence of this sequence.
* *
* @param start the start index (inclusive). * @param startIndex the start index (inclusive).
* @param end the end index (exclusive). * @param endIndex the end index (exclusive).
*/ */
public fun subSequence(start: Int, end: Int): CharSequence public fun subSequence(startIndex: Int, endIndex: Int): CharSequence
} }