Revert "Name and label changes for closure parameters (for review only) (#2981)"

This reverts commit 18406900ba.
This commit is contained in:
Michael Gottesman
2016-07-15 19:45:26 -07:00
parent ac5a9789e7
commit 40e1991e12
65 changed files with 350 additions and 382 deletions

View File

@@ -476,7 +476,7 @@ public protocol ExpressibleByStringLiteral
/// array as a parameter:
///
/// func sum(values: [Int]) -> Int {
/// return values.reduce(0, +)
/// return values.reduce(0, combine: +)
/// }
///
/// let sumOfFour = sum([5, 10, 15, 20])