about summary refs log tree commit diff stats
path: root/subx/apps/crenshaw2-1.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-03-19 22:41:34 -0700
committerKartik Agaram <vc@akkartik.com>2019-03-20 17:31:38 -0700
commit3fcc2371ec0587d6ab793962bca51fbc8130b2b3 (patch)
treec59d12644f03138773513afa127937623dc62a4f /subx/apps/crenshaw2-1.subx
parent938185b33ccf30aa8aa20bf8cc22073e140697bf (diff)
downloadmu-3fcc2371ec0587d6ab793962bca51fbc8130b2b3.tar.gz
5009
Diffstat (limited to 'subx/apps/crenshaw2-1.subx')
-rw-r--r--subx/apps/crenshaw2-1.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/apps/crenshaw2-1.subx b/subx/apps/crenshaw2-1.subx
index 8acdde59..46785b16 100644
--- a/subx/apps/crenshaw2-1.subx
+++ b/subx/apps/crenshaw2-1.subx
@@ -201,7 +201,7 @@ $compile:end:
 get-num:  # in : (address buffered-file), out : (address stream), err : fd or (address stream), ed : (address exit-descriptor) -> <void>
     # pseudocode:
     #   if (!is-digit?(Look)) expected(ed, err, "integer")
-    #   if (out->write >= out->length)
+    #   if out->write >= out->length
     #     write(err, "Error: too many digits in number\n")
     #     stop(ed, 1)
     #   out->data[out->write] = LSB(Look)