File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public extension CGPoint {
1313 y = size. height
1414 }
1515
16- // MARK: Point × Vector
16+ // MARK: - Point × Vector
1717
1818 static func + ( point: Self , offset: CGVector ) -> Self {
1919 Self (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public extension CGSize {
1515 height = vector. dy
1616 }
1717
18- // MARK: Size × Float
18+ // MARK: - Size × Float
1919
2020 static func * ( size: Self , scale: CGFloat ) -> Self {
2121 Self (
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public extension CGVector {
3838 )
3939 }
4040
41- // MARK: Vector × Vector
41+ // MARK: - Vector × Vector
4242
4343 static func + ( lhs: Self , rhs: Self ) -> Self {
4444 Self (
@@ -88,7 +88,7 @@ public extension CGVector {
8888 lhs. dy /= rhs. dy
8989 }
9090
91- // MARK: Vector × Float
91+ // MARK: - Vector × Float
9292
9393 static func * ( vector: Self , scale: CGFloat ) -> Self {
9494 Self (
You can’t perform that action at this time.
0 commit comments