Skip to content

Commit

Permalink
Merge pull request #21 from getheal/main
Browse files Browse the repository at this point in the history
Fix argument label warning
  • Loading branch information
dkk authored May 25, 2022
2 parents f568b78 + d53fdcf commit 3a66fa4
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 3a66fa4

Please sign in to comment.