Merge remote-tracking branch 'origin/master' into swift-3-api-guidelines

This commit is contained in:
Dmitri Gribenko
2016-02-17 14:40:05 -08:00
450 changed files with 8406 additions and 5202 deletions

View File

@@ -75,7 +75,7 @@ extension Collection {
//===----------------------------------------------------------------------===//
extension Collection {
/// Return the range of valid index values.
/// Returns the range of valid index values.
///
/// The result's `endIndex` is the same as that of `self`. Because
/// `Range` is half-open, iterating the values of the result produces
@@ -183,11 +183,11 @@ ${orderingRequirementForComparable}
%{
sortedDocCommentForPredicate = """\
/// Return an `Array` containing the sorted elements of `source`
/// Returns an `Array` containing the sorted elements of `source`
/// according to `isOrderedBefore`."""
sortedDocCommentForComparable = """\
/// Return an `Array` containing the sorted elements of `source`."""
/// Returns an `Array` containing the sorted elements of `source`."""
sortDocCommentForPredicate = """\
/// Sort `self` in-place according to `isOrderedBefore`."""