about summary refs log tree commit diff stats
path: root/071read-line.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-27 00:36:44 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-27 00:36:44 -0800
commit71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990 (patch)
tree56307b5145be44b2239d3c782234309ed714f1b6 /071read-line.subx
parent1a65c3af0f797892f5981f8ebd33c275c1ef06b0 (diff)
downloadmu-71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990.tar.gz
5924
Diffstat (limited to '071read-line.subx')
-rw-r--r--071read-line.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/071read-line.subx b/071read-line.subx
index 1dcdf8b9..e5440dcb 100644
--- a/071read-line.subx
+++ b/071read-line.subx
@@ -6,7 +6,7 @@
 # read bytes from 'f' until (and including) a newline and store them into 's'
 # 's' fails to grow if and only if no data found
 # just abort if 's' is too small
-read-line-buffered:  # f : (addr buffered-file), s : (addr stream byte)
+read-line-buffered:  # f: (addr buffered-file), s: (addr stream byte)
     # pseudocode:
     #   while true
     #     if (s->write >= s->length) abort
@@ -216,7 +216,7 @@ test-read-line-buffered-reads-final-line-until-Eof:
 # read bytes from 'f' until (and including) a newline and store them into 's'
 # 's' fails to grow if and only if no data found
 # just abort if 's' is too small
-read-line:  # f : (addr stream byte), s : (addr stream byte)
+read-line:  # f: (addr stream byte), s: (addr stream byte)
     # pseudocode:
     #   while true
     #     if (s->write >= s->length) abort