diff --git a/src/main/scala/scala/async/Async.scala b/src/main/scala/scala/async/Async.scala index 0bba6ed4..e9cd6c48 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. *