aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2013-03-21 17:10:49 -0700
committerKoushik Dutta <koushd@gmail.com>2013-03-21 17:10:49 -0700
commit87d9f09ba0cc1ccfd0f8a2a9eee1c5996ea3d814 (patch)
tree8c18e3a307aa8576000c22807f020b52ba54eb39 /README.md
parenteb6fcb3588e072a5c83a1f8223b33372881a3c73 (diff)
downloadAndroidAsync-87d9f09ba0cc1ccfd0f8a2a9eee1c5996ea3d814.tar.gz
AndroidAsync-87d9f09ba0cc1ccfd0f8a2a9eee1c5996ea3d814.tar.bz2
AndroidAsync-87d9f09ba0cc1ccfd0f8a2a9eee1c5996ea3d814.zip
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 ee15309..ae60dd9 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ AsyncHttpClient.getDefaultInstance().get(url, filename, new AsyncHttpClient.File
### Caching is supported too (experimental)
```java
-// arguments are the http client, the directory to store the cache, and the maximum size of the cache
+// 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);
```