aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSam Judd <sam@bu.mp>2013-09-03 11:51:24 -0700
committerSam Judd <sam@bu.mp>2013-09-03 11:51:24 -0700
commit35cb20e1a8eb09f1c346246346eb90e5fd29412c (patch)
tree957c4bd1ab13aed63bfc2726290deba7dad70be0 /README.md
parentc29ca39f16c945b93a314f42ef360e87b1528025 (diff)
downloadglide-35cb20e1a8eb09f1c346246346eb90e5fd29412c.tar.gz
Fix a typo in the readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 55812c64..0b5fcb25 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ public View getView(int position, View recycled, ViewGroup container) {
if (recycled == null) {
myImageView = (ImageView) inflater.inflate(R.layout.my_image_view, container, false);
} else {
- myImageView = (ImageView) recycled);
+ myImageView = (ImageView) recycled;
}
String url = myUrls.get(position);