From ff59401b05a0a1b1090929c7cb552549835b24d4 Mon Sep 17 00:00:00 2001 From: Adlai Holler Date: Sun, 21 Feb 2016 11:23:54 -0800 Subject: [PATCH] [ASInternalHelpers] Improve spacing --- AsyncDisplayKit/Private/ASInternalHelpers.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AsyncDisplayKit/Private/ASInternalHelpers.h b/AsyncDisplayKit/Private/ASInternalHelpers.h index de661d24b5..79f500e77c 100644 --- a/AsyncDisplayKit/Private/ASInternalHelpers.h +++ b/AsyncDisplayKit/Private/ASInternalHelpers.h @@ -51,9 +51,9 @@ ASDISPLAYNODE_INLINE void ASPerformBlockWithoutAnimation(BOOL withoutAnimation, ASDISPLAYNODE_INLINE void ASBoundsAndPositionForFrame(CGRect rect, CGPoint origin, CGPoint anchorPoint, CGRect *bounds, CGPoint *position) { - *bounds = (CGRect){ origin, rect.size }; - *position = CGPointMake(rect.origin.x + rect.size.width * anchorPoint.x, - rect.origin.y + rect.size.height * anchorPoint.y); + *bounds = (CGRect){ origin, rect.size }; + *position = CGPointMake(rect.origin.x + rect.size.width * anchorPoint.x, + rect.origin.y + rect.size.height * anchorPoint.y); } @interface NSIndexPath (ASInverseComparison)