summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorxuwei-k <6b656e6a69@gmail.com>2013-07-27 20:43:13 +0900
committerxuwei-k <6b656e6a69@gmail.com>2013-07-27 20:43:13 +0900
commit3a35480209284a4169039179260194430789515c (patch)
treeaad6f65c7d6a52f0d4a0bcbdd527cf24d5b1297c /src/library
parentf593364d7b6ebcd7050d7987dc7a5f2d4962f78a (diff)
downloadscala-3a35480209284a4169039179260194430789515c.tar.gz
scala-3a35480209284a4169039179260194430789515c.tar.bz2
scala-3a35480209284a4169039179260194430789515c.zip
fix Promise scaladoc
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/concurrent/Promise.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/concurrent/Promise.scala b/src/library/scala/concurrent/Promise.scala
index f950b13b78..cdde019cd0 100644
--- a/src/library/scala/concurrent/Promise.scala
+++ b/src/library/scala/concurrent/Promise.scala
@@ -82,7 +82,7 @@ trait Promise[T] {
/** Completes the promise with a value.
*
- * @param v The value to complete the promise with.
+ * @param value The value to complete the promise with.
*
* $promiseCompletion
*/
@@ -98,7 +98,7 @@ trait Promise[T] {
/** Completes the promise with an exception.
*
- * @param t The throwable to complete the promise with.
+ * @param cause The throwable to complete the promise with.
*
* $allowedThrowables
*