fix misuse of term "recursive" in Continations JavaDoc

This commit is contained in:
Joel Dice 2009-12-06 13:34:31 -07:00
parent 8c3e779d4c
commit bec3766180

View File

@ -90,8 +90,8 @@ import java.util.concurrent.Callable;
* <h3>Winding, Unwinding, and Rewinding</h3> * <h3>Winding, Unwinding, and Rewinding</h3>
* *
* <p>Traditionally, Java provides one way to wind the execution stack * <p>Traditionally, Java provides one way to wind the execution stack
* (recursive method calls) and two ways to unwind it (normal returns * (method calls) and two ways to unwind it (normal returns and
* and exception unwinding). With continuations, we add a new way to * exception unwinding). With continuations, we add a new way to
* rewind the stack and a new way to unwind it. * rewind the stack and a new way to unwind it.
* *
* <p>The call stack of a continuation may share frames with other * <p>The call stack of a continuation may share frames with other