diff --git a/Source/ASEditableTextNode.h b/Source/ASEditableTextNode.h index fb0c00356..e660eb106 100644 --- a/Source/ASEditableTextNode.h +++ b/Source/ASEditableTextNode.h @@ -192,13 +192,12 @@ NS_ASSUME_NONNULL_BEGIN - (void)editableTextNodeDidUpdateText:(ASEditableTextNode *)editableTextNode; /** - @abstract Indicates to the delegate that teh text node has finished editing. + @abstract Indicates to the delegate that the text node has finished editing. @param editableTextNode An editable text node. @discussion The invocation of this method coincides with the keyboard animating to become hidden. */ - (void)editableTextNodeDidFinishEditing:(ASEditableTextNode *)editableTextNode; - @end NS_ASSUME_NONNULL_END diff --git a/Source/Details/ASPINRemoteImageDownloader.h b/Source/Details/ASPINRemoteImageDownloader.h index 26567027e..8fa0294e9 100644 --- a/Source/Details/ASPINRemoteImageDownloader.h +++ b/Source/Details/ASPINRemoteImageDownloader.h @@ -26,7 +26,6 @@ NS_ASSUME_NONNULL_BEGIN * This is the default downloader used by network backed image nodes if PINRemoteImage and PINCache are * available. It uses PINRemoteImage's features to provide caching and progressive image downloads. */ -@property (class, readonly) ASPINRemoteImageDownloader *sharedDownloader; + (ASPINRemoteImageDownloader *)sharedDownloader NS_RETURNS_RETAINED; diff --git a/Source/Details/ASPINRemoteImageDownloader.m b/Source/Details/ASPINRemoteImageDownloader.m index 571c5de57..94962a123 100644 --- a/Source/Details/ASPINRemoteImageDownloader.m +++ b/Source/Details/ASPINRemoteImageDownloader.m @@ -37,11 +37,9 @@ #if PIN_ANIMATED_AVAILABLE @interface ASPINRemoteImageDownloader () - @end @interface PINCachedAnimatedImage (ASPINRemoteImageDownloader) - @end @implementation PINCachedAnimatedImage (ASPINRemoteImageDownloader) @@ -98,7 +96,6 @@ @implementation ASPINRemoteImageManager @end - static ASPINRemoteImageDownloader *sharedDownloader = nil; @interface ASPINRemoteImageDownloader () diff --git a/Source/Private/ASDisplayNode+FrameworkPrivate.h b/Source/Private/ASDisplayNode+FrameworkPrivate.h index 3f5ca1dde..2101565bf 100644 --- a/Source/Private/ASDisplayNode+FrameworkPrivate.h +++ b/Source/Private/ASDisplayNode+FrameworkPrivate.h @@ -301,7 +301,7 @@ __unused static NSString * _Nonnull NSStringFromASHierarchyStateChange(ASHierarc - (void)_layoutTransitionMeasurementDidFinish; /** - * Informs the node that hte pending layout transition did complete + * Informs the node that the pending layout transition did complete */ - (void)_completePendingLayoutTransition;