about summary refs log tree commit diff stats
path: root/apps/desugar.subx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/desugar.subx')
-rw-r--r--apps/desugar.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/desugar.subx b/apps/desugar.subx
index ae921caf..80c0eb5e 100644
--- a/apps/desugar.subx
+++ b/apps/desugar.subx
@@ -67,14 +67,14 @@ convert:  # in : (address buffered-file), out : (address buffered-file) -> <void
     #   while true
     #     clear-stream(line)
     #     read-line-buffered(in, line)
-    #     if (line->write == 0) break               # end of file
+    #     if (line->write == 0) break                     # end of file
     #     while true
     #       var word-slice = next-word(line)
-    #       if slice-empty?(word-slice)             # end of line
+    #       if slice-empty?(word-slice)                   # end of line
     #         break
-    #       if slice-starts-with?(word-slice, "#")  # comment
+    #       if slice-starts-with?(word-slice, "#")        # comment
     #         continue
-    #       if slice-starts-with?(word-slice, '%')  # register literal <== what we're here for
+    #       if slice-starts-with?(word-slice, '%')        # register literal <== what we're here for
     #         desugar-register(word-slice, out)
     #       else
     #         write-slice-buffered(out, word-slice)