Skip to content

Commit

Permalink
Explicitly remove label from first argument of RangeReplaceableCollec…
Browse files Browse the repository at this point in the history
…tion-conformance function as per SE-0046.

Swift 3.0 conformance.

For more info: <https://github.com/apple/swift-evolution/blob/master/proposals/0046-first-label.md>
  • Loading branch information
jdhealy committed Sep 9, 2016
1 parent 0221268 commit 6d528b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ColorWrap.swift
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ extension Color.Wrap: RangeReplaceableCollection {
parameters.reserveCapacity(minimumCapacity)
}

public mutating func append(newElement: Element) {
public mutating func append(_ newElement: Element) {
parameters.append(newElement)
}

Expand Down

0 comments on commit 6d528b9

Please sign in to comment.