File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public struct CGPoint {
53
53
extension CGPoint : Equatable { }
54
54
55
55
public func == ( lhs: CGPoint , rhs: CGPoint ) -> Bool {
56
- return ( lhs. x == rhs. x) && ( lhs. y == lhs . y)
56
+ return ( lhs. x == rhs. x) && ( lhs. y == rhs . y)
57
57
}
58
58
59
59
public struct CGSize {
@@ -72,7 +72,7 @@ public struct CGSize {
72
72
extension CGSize : Equatable { }
73
73
74
74
public func == ( lhs: CGSize , rhs: CGSize ) -> Bool {
75
- return ( lhs. width == rhs. width) && ( lhs. height == lhs . height)
75
+ return ( lhs. width == rhs. width) && ( lhs. height == rhs . height)
76
76
}
77
77
78
78
public struct CGRect {
@@ -91,7 +91,7 @@ public struct CGRect {
91
91
extension CGRect : Equatable { }
92
92
93
93
public func == ( lhs: CGRect , rhs: CGRect ) -> Bool {
94
- return ( lhs. origin == rhs. origin) && ( lhs. size == lhs . size)
94
+ return ( lhs. origin == rhs. origin) && ( lhs. size == rhs . size)
95
95
}
96
96
97
97
public typealias NSPoint = CGPoint
You can’t perform that action at this time.
0 commit comments