about summary refs log tree commit diff stats
path: root/subx/067write-buffered.subx
diff options
context:
space:
mode:
Diffstat (limited to 'subx/067write-buffered.subx')
-rw-r--r--subx/067write-buffered.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/067write-buffered.subx b/subx/067write-buffered.subx
index 3825a7f3..50ec7988 100644
--- a/subx/067write-buffered.subx
+++ b/subx/067write-buffered.subx
@@ -18,8 +18,8 @@ write-buffered:  # f : (address buffered-file), msg : (address array byte) -> <v
     # pseudocode:
     #   in = msg->data
     #   inend = &msg->data[msg->length]
-    #   while in < inend
-    #     if f->write >= f->length
+    #   while (in < inend)
+    #     if (f->write >= f->length)
     #       flush(f)
     #       clear-stream(f)
     #     f->data[f->write] = *in