diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.java index bbc6bb0589f986..362bf75d40f540 100644 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.java +++ b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/image/ImageLoaderModule.java @@ -83,9 +83,9 @@ private ImagePipeline getImagePipeline() { /** * Fetch the width and height of the given image. * - * @param uriString the URI of the remote image to prefetch - * @param promise the promise that is fulfilled when the image is successfully prefetched or - * rejected when there is an error + * @param uriString the URI of the remote image + * @param promise the promise that is fulfilled when operation successfully completed or rejected + * when there is an error */ @ReactMethod public void getSize(final String uriString, final Promise promise) { @@ -139,10 +139,10 @@ protected void onFailureImpl(DataSource> data /** * Fetch the width and height of the given image with headers. * - * @param uriString the URI of the remote image to prefetch + * @param uriString the URI of the remote image * @param headers headers send with the request - * @param promise the promise that is fulfilled when the image is successfully prefetched or - * rejected when there is an error + * @param promise the promise that is fulfilled when operation successfully completed or rejected + * when there is an error */ @ReactMethod public void getSizeWithHeaders(