aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-11-09 15:53:21 +0100
committerJason Zaugg <jzaugg@gmail.com>2012-11-09 15:53:21 +0100
commit566102b23cd08f2b6af60121feb28013288a0951 (patch)
treed4c075a362b270a93d04c9cd6184ce4267585dd7
parentcce4c3778b3f33885d340d53d1986289788b79b2 (diff)
downloadscala-async-566102b23cd08f2b6af60121feb28013288a0951.tar.gz
scala-async-566102b23cd08f2b6af60121feb28013288a0951.tar.bz2
scala-async-566102b23cd08f2b6af60121feb28013288a0951.zip
Doc fix.
-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
*/