about summary refs log tree commit diff stats
path: root/subx/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-01-16 11:17:07 -0800
committerKartik Agaram <vc@akkartik.com>2019-01-16 11:17:07 -0800
commit305770aabc40e20f307cf93667c9f9c825f57813 (patch)
tree4a551895ccbe2ea8c4ec21152dd79ff533b663da /subx/apps
parent0c11cafe790332eb65e1076dac4cfa97f44a137e (diff)
downloadmu-305770aabc40e20f307cf93667c9f9c825f57813.tar.gz
4935
Diffstat (limited to 'subx/apps')
-rw-r--r--subx/apps/pack.subx4
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/apps/pack.subx b/subx/apps/pack.subx
index 1ac500c9..d7052b0b 100644
--- a/subx/apps/pack.subx
+++ b/subx/apps/pack.subx
@@ -123,13 +123,13 @@ $main:end:
 #
 # we won't bother saving the internal structure of lines; reparsing should be cheap using two primitives:
 #   next-token(stream, delim char) -> slice (start, end pointers)
-#   slice-equal?(slice, kernel string)
+#   slice-equal?(slice, string)
 
 # helpers:
 #   emit(out : &buffered-file, word : &slice, width : int)
 #     if slice is all hex digits, parse and print appropriate digits
 #     otherwise just write-slice
-#   has-metadata?(word : &slice, s : &kernel-string) -> bool
+#   has-metadata?(word : &slice, s : &string) -> bool
 
 convert:  # in : (address buffered-file), out : (address buffered-file), err : (address buffered-file), ed : (address exit-descriptor) -> <void>
     # pseudocode: