From 2efe5d466d6b06ff1f6ce1ccf55ffa4327e6de27 Mon Sep 17 00:00:00 2001 From: akomar Date: Sun, 12 Jan 2014 14:22:13 +0100 Subject: Minor fixes in Async`s scaladoc. --- src/main/scala/scala/async/Async.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/scala/async/Async.scala b/src/main/scala/scala/async/Async.scala index c45a9c6..b02fa6a 100644 --- a/src/main/scala/scala/async/Async.scala +++ b/src/main/scala/scala/async/Async.scala @@ -11,7 +11,7 @@ import scala.reflect.internal.annotations.compileTimeOnly /** * Async blocks provide a direct means to work with [[scala.concurrent.Future]]. * - * For example, to use an API to that fetches as web page to fetch + * For example, to use an API that fetches a web page to fetch * two pages and add their lengths: * * {{{ @@ -45,7 +45,7 @@ object Async { def async[T](body: T)(implicit execContext: ExecutionContext): Future[T] = macro internal.ScalaConcurrentAsync.asyncImpl[T] /** - * Non-blocking await the on result of `awaitable`. This may only be used directly within an enclosing `await` block. + * Non-blocking await the on result of `awaitable`. This may only be used directly within an enclosing `async` block. * * Internally, this will register the remainder of the code in enclosing `async` block as a callback * in the `onComplete` handler of `awaitable`, and will *not* block a thread. -- cgit v1.2.3