aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruno Bieth <biethb@gmail.com>2015-08-18 17:19:25 +0200
committerBruno Bieth <biethb@gmail.com>2015-08-18 17:19:25 +0200
commita4d8454cfa0b0c2102766a5bded267583797f63d (patch)
treec0cc5fdf99207c8dd3105c8482f20a1244af33e2 /src
parent700171c85459d352cd913e59167885cea72c4e38 (diff)
downloadscala-async-a4d8454cfa0b0c2102766a5bded267583797f63d.tar.gz
scala-async-a4d8454cfa0b0c2102766a5bded267583797f63d.tar.bz2
scala-async-a4d8454cfa0b0c2102766a5bded267583797f63d.zip
Typo
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/scala/async/Async.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/scala/async/Async.scala b/src/main/scala/scala/async/Async.scala
index 0bba6ed..e9cd6c4 100644
--- a/src/main/scala/scala/async/Async.scala
+++ b/src/main/scala/scala/async/Async.scala
@@ -27,7 +27,7 @@ import scala.annotation.compileTimeOnly
* }
* }}}
*
- * Note that the in the following program, the second fetch does *not* start
+ * Note that in the following program, the second fetch does *not* start
* until after the first. If you need to start tasks in parallel, you must do
* so before `await`-ing a result.
*