Rename 'subrange' to 'bounds' in non-API arguments

This commit is contained in:
Dmitri Gribenko
2015-11-04 14:12:17 -08:00
committed by Max Moiseev
parent 3910a00a35
commit ab0a2a6044
17 changed files with 160 additions and 162 deletions

View File

@@ -64,7 +64,7 @@ ${stringSubscriptComment}
@available(
*, unavailable,
message="cannot subscript String with a Range<Int>, see the documentation comment for discussion")
public subscript(subRange: Range<Int>) -> String {
public subscript(bounds: Range<Int>) -> String {
fatalError("unavailable function can't be called")
}