aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2013-03-21 17:11:21 -0700
committerKoushik Dutta <koushd@gmail.com>2013-03-21 17:11:21 -0700
commitb8349e870e13195cc8c683c9c7d616dc1cf5dd45 (patch)
tree9d486d1b2c105af1659f1a39f5685d932d4a848f /README.md
parent87d9f09ba0cc1ccfd0f8a2a9eee1c5996ea3d814 (diff)
downloadAndroidAsync-b8349e870e13195cc8c683c9c7d616dc1cf5dd45.tar.gz
AndroidAsync-b8349e870e13195cc8c683c9c7d616dc1cf5dd45.tar.bz2
AndroidAsync-b8349e870e13195cc8c683c9c7d616dc1cf5dd45.zip
readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index ae60dd9..aa0cb80 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,9 @@ AsyncHttpClient.getDefaultInstance().get(url, filename, new AsyncHttpClient.File
```java
// arguments are the http client, the directory to store cache files, and the size of the cache in bytes
-ResponseCacheMiddleware.addCache(AsyncHttpClient.getDefaultInstance(), getFileStreamPath("asynccache"), 1024 * 1024 * 10);
+ResponseCacheMiddleware.addCache(AsyncHttpClient.getDefaultInstance(),
+ getFileStreamPath("asynccache"),
+ 1024 * 1024 * 10);
```