about summary refs log tree commit diff stats
path: root/html/407print-int32-decimal-right-justified.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/407print-int32-decimal-right-justified.mu.html')
-rw-r--r--html/407print-int32-decimal-right-justified.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/407print-int32-decimal-right-justified.mu.html b/html/407print-int32-decimal-right-justified.mu.html
index 55fd45c1..c62978e9 100644
--- a/html/407print-int32-decimal-right-justified.mu.html
+++ b/html/407print-int32-decimal-right-justified.mu.html
@@ -59,7 +59,7 @@ if ('onhashchange' in window) {
 <span id="L1" class="LineNr"> 1 </span><span class="muComment"># print 'n' with enough leading spaces to be right-justified in 'width'</span>
 <span id="L2" class="LineNr"> 2 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='407print-int32-decimal-right-justified.mu.html#L2'>print-int32-decimal-right-justified</a></span> <a href='405screen.mu.html#L9'>screen</a>: (addr <a href='405screen.mu.html#L9'>screen</a>), n: int, _width: int <span class="Delimiter">{</span>
 <span id="L3" class="LineNr"> 3 </span>  <span class="muComment"># tweak things for negative numbers</span>
-<span id="L4" class="LineNr"> 4 </span>  <span class="PreProc">var</span> n-width/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='311decimal-int.subx.html#L300'>decimal-size</a> n
+<span id="L4" class="LineNr"> 4 </span>  <span class="PreProc">var</span> n-width/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='311decimal-int.subx.html#L312'>decimal-size</a> n
 <span id="L5" class="LineNr"> 5 </span>  <span class="PreProc">var</span> width/<span class="Constant">ecx</span>: int <span class="SpecialChar">&lt;-</span> copy _width
 <span id="L6" class="LineNr"> 6 </span>  <span class="Delimiter">{</span>
 <span id="L7" class="LineNr"> 7 </span>    compare n-width, width