clarify Continuations.java JavaDoc comment

This commit is contained in:
Joel Dice 2010-12-05 18:56:19 -07:00
parent 019e032f4f
commit 800463bb45

View File

@ -53,8 +53,8 @@ import java.util.concurrent.Callable;
* causes the current continuation to be replaced with the calling * causes the current continuation to be replaced with the calling
* continuation. When the last method in this new continuation * continuation. When the last method in this new continuation
* returns, it returns to the native frame which created the current * returns, it returns to the native frame which created the current
* context, which may not be the same as the context in which that * context, which may or may not be the same as the context in which
* continuation was created. * that continuation was created.
* *
* <p>We define the return type of a continuation context as the * <p>We define the return type of a continuation context as the
* return type of the first method called in that context. A * return type of the first method called in that context. A