about summary refs log tree commit diff stats
path: root/prototypes/browse/4-render-page.mu
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/browse/4-render-page.mu')
-rw-r--r--prototypes/browse/4-render-page.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/prototypes/browse/4-render-page.mu b/prototypes/browse/4-render-page.mu
index bc8c6a55..79457aa0 100644
--- a/prototypes/browse/4-render-page.mu
+++ b/prototypes/browse/4-render-page.mu
@@ -17,7 +17,7 @@ fn main args: (addr array (addr array byte)) -> exit-status/ebx: int {
 fn render in: (addr buffered-file), toprow: int, leftcol: int, botrow: int, rightcol: int {
   clear toprow, leftcol, botrow, rightcol
   var row/ecx: int <- copy toprow
-$line-loop:  {
+$line-loop: {
     compare row, botrow
     break-if->=
     var col/edx: int <- copy leftcol