Skip to content

Commit

Permalink
Merge pull request #400 from tanglie1993/develop
Browse files Browse the repository at this point in the history
Correct typos
  • Loading branch information
Jawnnypoo authored Aug 8, 2016
2 parents 97bfec6 + 662f957 commit 93500d7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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)) {
Expand Down

0 comments on commit 93500d7

Please sign in to comment.