diff --git a/akka-actor/src/main/scala/akka/dispatch/Future.scala b/akka-actor/src/main/scala/akka/dispatch/Future.scala index 91c7b2356a..dcd0f46629 100644 --- a/akka-actor/src/main/scala/akka/dispatch/Future.scala +++ b/akka-actor/src/main/scala/akka/dispatch/Future.scala @@ -421,7 +421,8 @@ sealed trait Future[+T] extends japi.Future[T] with Await.Awaitable[T] { /** * Returns a new Future that is either the successful result of this Future, the successful result of that Future, - * or the failure from either this or that. + * or the failure from either this or that. In case fails, and the other never completes, + * the returned Future will never be completed. */ def or[U >: T](that: Future[U]): Future[U] = { val p = Promise[U]()