From 662f95774df6273305531087ca198f68bfbdcd2c Mon Sep 17 00:00:00 2001 From: tanglie1993 Date: Mon, 8 Aug 2016 23:58:33 +0800 Subject: [PATCH] Correct typos --- .../main/java/uk/co/senab/photoview/PhotoViewAttacher.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/src/main/java/uk/co/senab/photoview/PhotoViewAttacher.java b/library/src/main/java/uk/co/senab/photoview/PhotoViewAttacher.java index beb42c33..377807bf 100755 --- a/library/src/main/java/uk/co/senab/photoview/PhotoViewAttacher.java +++ b/library/src/main/java/uk/co/senab/photoview/PhotoViewAttacher.java @@ -86,7 +86,7 @@ private static void checkZoomLevels(float minZoom, float midZoom, } /** - * @return true if the ImageView exists, and it's Drawable exists + * @return true if the ImageView exists, and its Drawable exists */ private static boolean hasDrawable(ImageView imageView) { return null != imageView && null != imageView.getDrawable(); @@ -111,11 +111,11 @@ private static boolean isSupportedScaleType(final ScaleType scaleType) { } /** - * Set's the ImageView's ScaleType to Matrix. + * Sets the ImageView's ScaleType to Matrix. */ private static void setImageViewScaleTypeMatrix(ImageView imageView) { /** - * PhotoView sets it's own ScaleType to Matrix, then diverts all calls + * PhotoView sets its own ScaleType to Matrix, then diverts all calls * setScaleType to this.setScaleType automatically. */ if (null != imageView && !(imageView instanceof IPhotoView)) {