Skip to content

Commit

Permalink
grammar tweaks to Continuations.java JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
dicej committed Jun 16, 2010
1 parent 1b31fb6 commit cdc48da
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions classpath/avian/Continuations.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
* type of "B" must match exactly</li>
*
* <li>If the return type of "A" is an object type, that type must
* assignable from the return type of "B" (i.e. the latter must
* be assignable from the return type of "B" (i.e. the latter must
* either be the same as the former or a superclass or
* superinterface of it)</li>
*
Expand Down Expand Up @@ -111,11 +111,11 @@
* release it after the task is finished, regardless of how often the
* task might temporarily yield control to other continuations.
*
* <p>Conversely, one might wish to acquire and release a resource
* <p>Alternatively, one might wish to acquire and release a resource
* each time control (re)winds to or unwinds from a continuation,
* respectively. In this case, we use <code>dynamicWind</code> to
* register functions which will run every time that frame is passed,
* regardless of how the stack is wound or unwound.
* respectively. In this case, one may use <code>dynamicWind</code>
* to register functions which will run every time that frame is
* passed, regardless of how the stack is wound or unwound.
*/
public class Continuations {
private Continuations() { }
Expand Down

0 comments on commit cdc48da

Please sign in to comment.