Skip to content

Commit 4a0187e

Browse files
committed
added lines to marks
1 parent 4a62fe8 commit 4a0187e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Sources/CGeometry/CGPoint.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

Sources/CGeometry/CGSize.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

Sources/CGeometry/CGVector.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)