diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-03-19 22:56:18 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-03-20 17:31:52 -0700 |
commit | 5c21976b5837484264b26557013e3b9264b4ee89 (patch) | |
tree | e01896819a5a890a8438f9d22d93e88f421e5f08 | |
parent | 3fcc2371ec0587d6ab793962bca51fbc8130b2b3 (diff) | |
download | mu-5c21976b5837484264b26557013e3b9264b4ee89.tar.gz |
5010
-rw-r--r-- | subx/apps/pack.subx | 2 |
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) # ... # |