aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
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();
```