Fix nullability of ASDisplayNode.name

This commit is contained in:
Adlai Holler
2015-10-29 09:57:27 -07:00
parent f2a095a459
commit 82c1549d8f

View File

@@ -113,7 +113,7 @@ typedef void (^ASDisplayNodeDidLoadBlock)(ASDisplayNode *node);
/** /**
* @abstract The name of this node, which will be displayed in `description`. The default value is nil. * @abstract The name of this node, which will be displayed in `description`. The default value is nil.
*/ */
@property (atomic, copy) NSString *name; @property (nullable, atomic, copy) NSString *name;
/** /**
* @abstract Returns whether the node is synchronous. * @abstract Returns whether the node is synchronous.