Fix the comment for getSize in Image.android.js (#22092)

Summary:
A minor change to the comment in the Image.android.js file.
Pull Request resolved: https://github.com/facebook/react-native/pull/22092

Differential Revision: D12918066

Pulled By: TheSavior

fbshipit-source-id: f27c63241c9dde780c037edcbcdf4cc10d55d33e
This commit is contained in:
wd39 2018-11-03 18:35:21 -07:00 committed by Facebook Github Bot
parent 4d16a0e84e
commit a09aca5bb0
1 changed files with 2 additions and 3 deletions

View File

@ -262,10 +262,9 @@ let Image = (
Image = React.forwardRef(Image);
/**
* Prefetches a remote image for later use by downloading it to the disk
* cache
* Retrieve the width and height (in pixels) of an image prior to displaying it
*
* See https://facebook.github.io/react-native/docs/image.html#prefetch
* See https://facebook.github.io/react-native/docs/image.html#getsize
*/
Image.getSize = getSize;