From dd8f5de06fbcda45a74e63bafdc9711c12b1e07f Mon Sep 17 00:00:00 2001 From: zhongwuzw Date: Sat, 26 Jan 2019 11:48:31 -0800 Subject: [PATCH] Fix small typo in comments of reactDecodedImageBytes (#23165) Summary: Changelog: ---------- [iOS] [Fixed] - Fix small typo in comments of reactDecodedImageBytes Pull Request resolved: https://github.com/facebook/react-native/pull/23165 Differential Revision: D13832344 Pulled By: cpojer fbshipit-source-id: d17150e65c6ecce5cd2b7cd324be4c4d45edc357 --- Libraries/Image/RCTImageLoader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Image/RCTImageLoader.h b/Libraries/Image/RCTImageLoader.h index 90a0a43a744..0d611b1b516 100644 --- a/Libraries/Image/RCTImageLoader.h +++ b/Libraries/Image/RCTImageLoader.h @@ -53,7 +53,7 @@ typedef dispatch_block_t RCTImageLoaderCancellationBlock; @property (nonatomic, copy) CAKeyframeAnimation *reactKeyframeAnimation; /** - * Image's memory bytes. It has the dafault calculation of single image of GIF, if you have custom calculation of image decoded bytes, you can assign it using your value. + * Memory bytes of the image with the default calculation of static image or GIF. Custom calculations of decoded bytes can be assigned manually. */ @property (nonatomic, assign) NSInteger reactDecodedImageBytes;