From bb7118a26a58e43bf9713f8fa1480fc9604dfef4 Mon Sep 17 00:00:00 2001 From: Michael Schneider Date: Thu, 6 Oct 2016 20:37:12 -0700 Subject: [PATCH] Fix ASAbsoluteLayoutSpec creation children protocol (#2357) --- AsyncDisplayKit/Layout/ASAbsoluteLayoutSpec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AsyncDisplayKit/Layout/ASAbsoluteLayoutSpec.h b/AsyncDisplayKit/Layout/ASAbsoluteLayoutSpec.h index 5639d0c2e5..a2b46d921b 100644 --- a/AsyncDisplayKit/Layout/ASAbsoluteLayoutSpec.h +++ b/AsyncDisplayKit/Layout/ASAbsoluteLayoutSpec.h @@ -20,9 +20,9 @@ NS_ASSUME_NONNULL_BEGIN @interface ASAbsoluteLayoutSpec : ASLayoutSpec /** - @param children Children to be positioned at fixed positions, each conforms to ASAbsoluteLayoutElement + @param children Children to be positioned at fixed positions */ -+ (instancetype)absoluteLayoutSpecWithChildren:(NSArray> *)children AS_WARN_UNUSED_RESULT; ++ (instancetype)absoluteLayoutSpecWithChildren:(NSArray> *)children AS_WARN_UNUSED_RESULT; @end