aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/group.md2
-rw-r--r--md.bqn2
-rw-r--r--tutorial/evalexp.bqn2
-rw-r--r--tutorial/list.md2
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/group.md b/doc/group.md
index de8d438e..af133d64 100644
--- a/doc/group.md
+++ b/doc/group.md
@@ -5,7 +5,7 @@
BQN replaces the Key operator from J or Dyalog APL, and [many forms of partitioning](https://aplwiki.com/wiki/Partition_representations), with a single (ambivalent) Group function `⊔`. This function is somewhat related to the K function `=` of the same name, but results in an array rather than a dictionary.
<!--GEN
-Num ← ·Highlight •Repr
+Num ← ·Highlight FmtNum
Str ← ·Highlight '"'(∾∾⊣)⊢
wf ← Num¨ wv ← 0‿¯1‿¯1‿2‿0
xf ← Str¨ xv ← "zero"‿"one"‿"two"‿"three"‿"four"
diff --git a/md.bqn b/md.bqn
index 3a43ffdd..525137cc 100644
--- a/md.bqn
+++ b/md.bqn
@@ -157,7 +157,7 @@ blobURL ← repoURL∾"/blob/master/"
_getCodeExec ← {𝕗⋄•MakeREPL@}
_getSvgExec ← {𝕗
e←•MakeREPL@
- (E"GetHighlights←Modify←!⋄{GetHighlights‿Modify↩𝕩}"){𝔽} GetHighlights‿Modify
+ ⟨"","",GetHighlights‿Modify‿E⟩ E "GetHighlights‿Modify‿Eval←•args"
E•FChars"svg.bqn"
JoinLines⍟(1<≡)∘E
}
diff --git a/tutorial/evalexp.bqn b/tutorial/evalexp.bqn
index c26e2929..47cc4863 100644
--- a/tutorial/evalexp.bqn
+++ b/tutorial/evalexp.bqn
@@ -1,2 +1,2 @@
Compile ← (↕62)⊸((•Import"../src/glyphs.bqn") •Import "../src/c.bqn")
-DrawEval ← Compile⊸(•Eval •FChars "../src/e.bqn")
+DrawEval ← Compile⊸(Eval •FChars "../src/e.bqn")
diff --git a/tutorial/list.md b/tutorial/list.md
index a9fa6471..c9fbb0d2 100644
--- a/tutorial/list.md
+++ b/tutorial/list.md
@@ -183,7 +183,7 @@ Now we'd like to generate that list `8‿4‿2‿1` instead of writing it out, p
Lot of functions up there. Notice how I need to use parentheses for the left argument of a function if it's compound, but never for the right argument, and consequently never with a one-argument function.
<!--GEN evalexp.bqn
-wh↩19⌾(¯1⊸⊑)wh
+Eval "wh↩19⌾(¯1⊸⊑)wh"
DrawEval "+´ (⌽2⋆↕4) × ""1001""-'0'"
-->