Skip to content

Commit 51bacec

Browse files
authored
Merge pull request #21 from charlymr/master
Fixed #20 Identifier Name Violation
2 parents 43bae27 + b9a6e04 commit 51bacec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Sources/Internal/CollectionViewSlantedLayoutAttributes.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ open class CollectionViewSlantedLayoutAttributes: UICollectionViewLayoutAttribut
4343
/// :nodoc:
4444
override open func isEqual(_ object: Any?) -> Bool {
4545

46-
if let o = object as? CollectionViewSlantedLayoutAttributes {
47-
if self.slantedLayerMask != o.slantedLayerMask {
46+
if let obj = object as? CollectionViewSlantedLayoutAttributes {
47+
if self.slantedLayerMask != obj.slantedLayerMask {
4848
return false
4949
}
5050
return super.isEqual(object)

0 commit comments

Comments
 (0)