aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorViktor Klang (√) <viktor.klang@gmail.com>2013-04-03 21:52:35 +0300
committerViktor Klang (√) <viktor.klang@gmail.com>2013-04-03 21:52:35 +0300
commit41a47b3ca7d2e9f9e683acbb8fe2a50cd37d54f6 (patch)
tree1909bf39a26e1a11410c1e50f86d0013be0e4fc2 /README.md
parent8a80f4405203afad4baf3c32e0372475cb70fc1b (diff)
downloadscala-async-41a47b3ca7d2e9f9e683acbb8fe2a50cd37d54f6.tar.gz
scala-async-41a47b3ca7d2e9f9e683acbb8fe2a50cd37d54f6.tar.bz2
scala-async-41a47b3ca7d2e9f9e683acbb8fe2a50cd37d54f6.zip
Update README.md
Technically line 5 is very blocking.
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 8c36a66..d00d5e2 100644
--- a/README.md
+++ b/README.md
@@ -53,7 +53,7 @@ has finished, we trigger it again, and suspend again.
Finally, we add the results and complete `combined`, which
in turn will release line 5 (unless it had already timed out).
-It is important to note that while this code is non-blocking,
+It is important to note that while line 1-4 is non-blocking,
it is not parallel. If we wanted to parallelize the two computations,
we could rearrange the code as follows.