about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--060string.mu4
-rw-r--r--061channel.mu6
-rw-r--r--edit.mu6
3 files changed, 8 insertions, 8 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 [
diff --git a/061channel.mu b/061channel.mu
index d0c7ae2f..981d6c0c 100644
--- a/061channel.mu
+++ b/061channel.mu
@@ -50,7 +50,7 @@ recipe new-channel [
   reply result
 ]
 
-# chan:address:channel <- write chan:address:channel, val:location
+# chan <- write chan:address:channel, val:location
 recipe write [
   local-scope
   chan:address:channel <- next-ingredient
@@ -79,7 +79,7 @@ recipe write [
   reply chan/same-as-ingredient:0
 ]
 
-# result:location, chan:address:channel <- read chan:address:channel
+# result:location, chan <- read chan:address:channel
 recipe read [
   local-scope
   chan:address:channel <- next-ingredient
@@ -277,7 +277,7 @@ scenario channel-read-not-full [
 ]
 
 # helper for channels of characters in particular
-# out:address:channel <- buffer-lines in:address:channel, out:address:channel
+# out <- buffer-lines in:address:channel, out:address:channel
 recipe buffer-lines [
   local-scope
   in:address:channel <- next-ingredient
diff --git a/edit.mu b/edit.mu
index 6f16a1a4..5554395e 100644
--- a/edit.mu
+++ b/edit.mu
@@ -248,7 +248,7 @@ recipe render [
   reply row, screen/same-as-ingredient:0, editor/same-as-ingredient:1
 ]
 
-# row:number, screen:address <- render-string screen:address, s:address:array:character, left:number, right:number, color:number, row:number
+# row, screen <- render-string screen:address, s:address:array:character, left:number, right:number, color:number, row:number
 # move cursor at start of next line
 # print a string 's' to 'editor' in 'color' starting at 'row'
 # clear rest of last line, but don't move cursor to next line
@@ -512,7 +512,7 @@ after +character-c-recived [
   color <- get-color color, c
 ]
 
-# color:number <- get-color color:number, c:character
+# color <- get-color color:number, c:character
 # so far the previous color is all the information we need; that may change
 recipe get-color [
   local-scope
@@ -4657,7 +4657,7 @@ recipe restore-sandboxes [
   reply env/same-as-ingredient:0
 ]
 
-# row:number, screen:address <- render-screen screen:address, sandbox-screen:address, left:number, right:number, row:number
+# row, screen <- render-screen screen:address, sandbox-screen:address, left:number, right:number, row:number
 # print the fake sandbox screen to 'screen' with appropriate delimiters
 # leave cursor at start of next line
 recipe render-screen [