[Layout] Rename ASStackLayoutable to ASStackLayoutElement (#2322)

* redo all renaming, push new branch

* rename a few missed occurances of static
This commit is contained in:
Hannah Troisi
2016-09-29 12:29:21 -07:00
committed by appleguy
parent 7551627b58
commit 47f73576ef
12 changed files with 54 additions and 54 deletions

View File

@@ -20,9 +20,9 @@ NS_ASSUME_NONNULL_BEGIN
@interface ASAbsoluteLayoutSpec : ASLayoutSpec
/**
@param children Children to be positioned at fixed positions, each conforms to ASAbsoluteLayoutable
@param children Children to be positioned at fixed positions, each conforms to ASAbsoluteLayoutElement
*/
+ (instancetype)absoluteLayoutSpecWithChildren:(NSArray<id<ASAbsoluteLayoutable>> *)children;
+ (instancetype)absoluteLayoutSpecWithChildren:(NSArray<id<ASAbsoluteLayoutElement>> *)children;
@end