about summary refs log tree commit diff stats
path: root/410file.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-02-07 00:17:17 -0800
committerKartik Agaram <vc@akkartik.com>2021-02-07 00:20:29 -0800
commit74f1512ff113cf35706af57e9d40c78b7d77f49e (patch)
tree7c7acb23e1a26387117e464ec6ab01126dbc8ae8 /410file.mu
parent6c4c25555c7df0d78ad41c813345f63cae1819de (diff)
downloadmu-74f1512ff113cf35706af57e9d40c78b7d77f49e.tar.gz
7690
Convert comments about magic constants into metadata.
Diffstat (limited to '410file.mu')
-rw-r--r--410file.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/410file.mu b/410file.mu
index 970407cf..86dac7bd 100644
--- a/410file.mu
+++ b/410file.mu
@@ -7,7 +7,7 @@ fn read-lines in: (addr buffered-file), out: (addr handle array (handle array by
     clear-stream line-a
     read-line-buffered in, line-a
     var done?/eax: boolean <- stream-empty? line-a
-    compare done?, 0  # false
+    compare done?, 0/false
     break-if-!=
 #?     print-string 0, "AAA\n"
     var h: (handle array byte)