about summary refs log tree commit diff stats
path: root/sandbox/005-sandbox.mu
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/005-sandbox.mu')
-rw-r--r--sandbox/005-sandbox.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/005-sandbox.mu b/sandbox/005-sandbox.mu
index 6b0098bb..d5bfbd62 100644
--- a/sandbox/005-sandbox.mu
+++ b/sandbox/005-sandbox.mu
@@ -408,7 +408,7 @@ def render-text screen:&:screen, s:text, left:num, right:num, color:num, row:num
   move-cursor screen, row, left
 ]
 
-# like 'render' for texts, but with colorization for comments like in the editor
+# like 'render-text', but with colorization for comments like in the editor
 def render-code screen:&:screen, s:text, left:num, right:num, row:num -> row:num, screen:&:screen [
   local-scope
   load-ingredients
@@ -426,7 +426,7 @@ def render-code screen:&:screen, s:text, left:num, right:num, row:num -> row:num
     done? <- greater-or-equal row, screen-height
     break-if done?
     c:char <- index *s, i
-    <character-c-received>  # only line different from render
+    <character-c-received>  # only line different from 'render-text'
     {
       # at right? wrap.
       at-right?:bool <- equal column, right