aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/scala/scala/async/Async.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/scala/scala/async/Async.scala b/src/main/scala/scala/async/Async.scala
index acd5128..e8f5263 100644
--- a/src/main/scala/scala/async/Async.scala
+++ b/src/main/scala/scala/async/Async.scala
@@ -56,8 +56,9 @@ abstract class AsyncBase extends AsyncUtils {
*
* A call to await does not block the thread, rather it is a delimiter
* used by the enclosing `async` macro. Code following the `await`
- * call
- @ @param awaitable The future from which a value is awaited
+ * call.
+ *
+ * @param awaitable The future from which a value is awaited
* @tparam T The type of that value
* @return The value
*/