Skip to content

Commit

Permalink
Merge pull request airbnb#1165 from TheInkedEngineer/patch-1
Browse files Browse the repository at this point in the history
[Fix] Missing spacing inside braces
  • Loading branch information
buba447 authored Apr 23, 2020
2 parents f3b12ba + c333dfe commit b4502eb
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 b4502eb

Please sign in to comment.