about summary refs log tree commit diff stats
path: root/071read-line.subx
diff options
context:
space:
mode:
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 a68a76c2..5c4019ab 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 : (address buffered-file), s : (address stream byte) -> <void>
+read-line-buffered:  # f : (address buffered-file), s : (address stream byte)
     # pseudocode:
     #   while true
     #     if (s->write >= s->length) abort
@@ -220,7 +220,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 : (address stream), s : (address stream byte) -> <void>
+read-line:  # f : (address stream), s : (address stream byte)
     # pseudocode:
     #   while true
     #     if (s->write >= s->length) abort