From 1fd65c2f254f1f7d60833f1fbf8fa3d7267e8f1d Mon Sep 17 00:00:00 2001 From: Adlai Holler Date: Tue, 1 Dec 2015 21:57:45 -0800 Subject: [PATCH] Annotate ASAsciiArtBoxCreator.h --- AsyncDisplayKit/Layout/ASAsciiArtBoxCreator.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/AsyncDisplayKit/Layout/ASAsciiArtBoxCreator.h b/AsyncDisplayKit/Layout/ASAsciiArtBoxCreator.h index 15d825a5ca..18a925a780 100644 --- a/AsyncDisplayKit/Layout/ASAsciiArtBoxCreator.h +++ b/AsyncDisplayKit/Layout/ASAsciiArtBoxCreator.h @@ -10,6 +10,8 @@ #import +NS_ASSUME_NONNULL_BEGIN + @protocol ASLayoutableAsciiArtProtocol /** * Returns an ascii-art representation of this object and its children. @@ -41,7 +43,7 @@ * | ASTextNode ASTextNode ASTextNode | * ---------------------------------------- */ -+ (NSString *)horizontalBoxStringForChildren:(NSArray *)children parent:(NSString *)parent; ++ (NSString *)horizontalBoxStringForChildren:(NSArray *)children parent:(NSString *)parent; /** * Renders an ascii art box with the children aligned vertically. @@ -52,8 +54,8 @@ * | ASTextNode | * --------------------- */ -+ (NSString *)verticalBoxStringForChildren:(NSArray *)children parent:(NSString *)parent; ++ (NSString *)verticalBoxStringForChildren:(NSArray *)children parent:(NSString *)parent; @end - +NS_ASSUME_NONNULL_END