about summary refs log tree commit diff stats
path: root/subx/apps/pack.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-03-19 22:56:18 -0700
committerKartik Agaram <vc@akkartik.com>2019-03-20 17:31:52 -0700
commit5c21976b5837484264b26557013e3b9264b4ee89 (patch)
treee01896819a5a890a8438f9d22d93e88f421e5f08 /subx/apps/pack.subx
parent3fcc2371ec0587d6ab793962bca51fbc8130b2b3 (diff)
downloadmu-5c21976b5837484264b26557013e3b9264b4ee89.tar.gz
5010
Diffstat (limited to 'subx/apps/pack.subx')
-rw-r--r--subx/apps/pack.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/apps/pack.subx b/subx/apps/pack.subx
index 1db79722..8a82fcb5 100644
--- a/subx/apps/pack.subx
+++ b/subx/apps/pack.subx
@@ -536,7 +536,7 @@ convert-data-segment:  # in : (address buffered-file), out : (address buffered-f
 convert-instruction:  # line : (address stream byte), out : (address buffered-file) -> <void>
     # pseudocode:
     #   word-slice = next-word
-    #   if starts-with(word-slice, "#")       # comments
+    #   if slice-starts-with(word-slice, "#")       # comments
     #     write-stream-buffered(out, line)
     #   ...
     #