aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2013-05-21 00:10:01 -0700
committerKoushik Dutta <koushd@gmail.com>2013-05-21 00:10:01 -0700
commit31caa6895db25cf26e71b7b703262b8d763a2e06 (patch)
tree645be931509b1dd6009da0a237cf6982fdf6aafa /README.md
parenta712677519dcbdf28be4ad6527b4bddbc401824e (diff)
downloadAndroidAsync-31caa6895db25cf26e71b7b703262b8d763a2e06.tar.gz
AndroidAsync-31caa6895db25cf26e71b7b703262b8d763a2e06.tar.bz2
AndroidAsync-31caa6895db25cf26e71b7b703262b8d763a2e06.zip
note that future.get may block.
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 e34dc65..e1ddaa9 100644
--- a/README.md
+++ b/README.md
@@ -177,7 +177,7 @@ All the API calls return [Futures](http://en.wikipedia.org/wiki/Futures_and_prom
```java
Future<String> string = client.getString("http://foo.com/hello.txt");
-// this may throw!
+// this will block, and may also throw if there was an error!
String value = string.get();
```