From 07a538a2dc03136257d9f1ab901145b083d429a2 Mon Sep 17 00:00:00 2001 From: Nadine Salter Date: Wed, 30 Jul 2014 15:59:01 -0700 Subject: [PATCH] Update comments with correct symbol names (#11). * ASDisplayNodeAsyncView -> _ASDisplayView * ASDisplayNodeView -> ASDisplayNodeViewProperties --- AsyncDisplayKit/ASDisplayNode.h | 2 +- AsyncDisplayKit/Private/_ASPendingState.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AsyncDisplayKit/ASDisplayNode.h b/AsyncDisplayKit/ASDisplayNode.h index 5e0d4da9..4236a0c3 100644 --- a/AsyncDisplayKit/ASDisplayNode.h +++ b/AsyncDisplayKit/ASDisplayNode.h @@ -19,7 +19,7 @@ - (id)init; // Alternative initializer. Provide any UIView subclass, such as UIScrollView, and the ASDisplayNode's view will be of that type. -// If viewClass is not a subclass of ASDisplayNodeAsyncView, it will still render synchronously and -layout and touch handling methods on the node will not be called. +// If viewClass is not a subclass of _ASDisplayView, it will still render synchronously and -layout and touch handling methods on the node will not be called. // The view instance will be created with alloc/init. - (id)initWithViewClass:(Class)viewClass; diff --git a/AsyncDisplayKit/Private/_ASPendingState.h b/AsyncDisplayKit/Private/_ASPendingState.h index 784ab71a..904730b9 100644 --- a/AsyncDisplayKit/Private/_ASPendingState.h +++ b/AsyncDisplayKit/Private/_ASPendingState.h @@ -22,7 +22,7 @@ @interface _ASPendingState : NSObject -// Supports all of the properties included the ASDisplayNodeView protocol +// Supports all of the properties included in the ASDisplayNodeViewProperties protocol - (void)applyToView:(UIView *)view; - (void)applyToLayer:(CALayer *)layer;