about summary refs log tree commit diff stats
path: root/060string.mu
diff options
context:
space:
mode:
Diffstat (limited to '060string.mu')
-rw-r--r--060string.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/060string.mu b/060string.mu
index cc180bb1..c7c8bf71 100644
--- a/060string.mu
+++ b/060string.mu
@@ -150,7 +150,7 @@ recipe buffer-full? [
   reply result
 ]
 
-# in:address:buffer <- buffer-append in:address:buffer, c:character
+# in <- buffer-append in:address:buffer, c:character
 recipe buffer-append [
   local-scope
   in:address:buffer <- next-ingredient
@@ -794,7 +794,7 @@ scenario string-find-next-second [
   ]
 ]
 
-# idx:number <- find-substring text:address:array:character, pattern:address:array:character, idx:number
+# next-index:number <- find-substring text:address:array:character, pattern:address:array:character, idx:number
 # like find-next, but searches for multiple characters
 # fairly dumb algorithm
 recipe find-substring [