Skip to content

Commit

Permalink
Fix argument label warning
Browse files Browse the repository at this point in the history
  • Loading branch information
apersaud committed May 18, 2022
1 parent f568b78 commit d53fdcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/WrappingHStack/InternalWrappingHStack.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ struct InternalWrappingHStack: View {

firstItemOfEachLane = content
.enumerated()
.reduce((firstItems: [], currentLineWidth: width)) { (result, contentIterator) -> (firstItemOfEachLane: [Int], currentLineWidth: CGFloat) in
.reduce((firstItemOfEachLane: [], currentLineWidth: width)) { (result, contentIterator) -> (firstItemOfEachLane: [Int], currentLineWidth: CGFloat) in
var (firstItemOfEachLane, currentLineWidth) = result

switch contentIterator.element {
Expand Down

0 comments on commit d53fdcf

Please sign in to comment.