From efc447d2f72b9d7104979dc786cf17d6912ac70a Mon Sep 17 00:00:00 2001 From: Daichi Furiya Date: Tue, 15 Sep 2015 15:12:11 +0900 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c77265..f7df5f8 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ You can set a multiple transformations. ```java Glide.with(this).load(R.drawable.demo) - .bitmapTransform(new BlurTransformation(context, 25, 2), new CropCircleTransformation(pool)) + .bitmapTransform(new BlurTransformation(context, 25, 2), new CropCircleTransformation(context)) .into((ImageView) findViewById(R.id.image)); ```