Skip to content

Commit

Permalink
[Fix] Missing spacing inside braces
Browse files Browse the repository at this point in the history
Just a minor fix for people with Swift OCD.
  • Loading branch information
TheInkedEngineer committed Mar 30, 2020
1 parent 934954c commit c333dfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ final class StrokeRenderer: PassThroughOutputNode, Renderable {
layer.lineDashPhase = dashPhase ?? 0
layer.fillColor = nil
if let dashPattern = dashLengths {
layer.lineDashPattern = dashPattern.map({ NSNumber(value: Double($0))})
layer.lineDashPattern = dashPattern.map({ NSNumber(value: Double($0)) })
}
}
}

0 comments on commit c333dfe

Please sign in to comment.