diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-11-27 12:06:08 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-11-27 12:06:08 -0800 |
commit | d1e5e391c790791c37c64f44f5ff0b98e9c6b907 (patch) | |
tree | ae64758c77b901d8eb6b1c7da625c9b906ed53d3 | |
parent | 2131b055f5ce1292e5f115fe66b25b8e5c6c5883 (diff) | |
download | mu-d1e5e391c790791c37c64f44f5ff0b98e9c6b907.tar.gz |
4788
-rw-r--r-- | html/subx/057stop.subx.html | 2 | ||||
-rw-r--r-- | subx/057stop.subx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/html/subx/057stop.subx.html b/html/subx/057stop.subx.html index 2649724e..dfdc65db 100644 --- a/html/subx/057stop.subx.html +++ b/html/subx/057stop.subx.html @@ -84,7 +84,7 @@ if ('onhashchange' in window) { <span id="L25" class="LineNr"> 25 </span><span class="Comment"># such as registers. Only ESP will have a well-defined value after 'stop'</span> <span id="L26" class="LineNr"> 26 </span><span class="Comment"># returns. (This is a poor man's setjmp/longjmp, if you know what that is.)</span> <span id="L27" class="LineNr"> 27 </span><span class="Comment">#</span> -<span id="L28" class="LineNr"> 28 </span><span class="Comment"># Before you an call any function that may call 'stop', you need to pass in an</span> +<span id="L28" class="LineNr"> 28 </span><span class="Comment"># Before you can call any function that may call 'stop', you need to pass in an</span> <span id="L29" class="LineNr"> 29 </span><span class="Comment"># exit-descriptor to it. To create an exit-descriptor use 'tailor-exit-descriptor'</span> <span id="L30" class="LineNr"> 30 </span><span class="Comment"># below. It's not the most pleasant abstraction in the world.</span> <span id="L31" class="LineNr"> 31 </span><span class="Comment">#</span> diff --git a/subx/057stop.subx b/subx/057stop.subx index 9bdf69c3..b7ae2fa2 100644 --- a/subx/057stop.subx +++ b/subx/057stop.subx @@ -25,7 +25,7 @@ # such as registers. Only ESP will have a well-defined value after 'stop' # returns. (This is a poor man's setjmp/longjmp, if you know what that is.) # -# Before you an call any function that may call 'stop', you need to pass in an +# Before you can call any function that may call 'stop', you need to pass in an # exit-descriptor to it. To create an exit-descriptor use 'tailor-exit-descriptor' # below. It's not the most pleasant abstraction in the world. # |