about summary refs log tree commit diff stats
path: root/sandbox
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox')
-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
title='author Kartik K. Agaram <vc@akkartik.com> 2016-09-16 16:04:11 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-09-16 16:04:11 -0700 3371' href='/akkartik/mu/commit/html/059to_text.mu.html?h=main&id=ced133e40290c30809e6d632cdf1e6f749ea9dd5'>ced133e4 ^
f344b250 ^
ced133e4 ^






f344b250 ^


ced133e4 ^



0ca56ed8 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83