aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src
diff options
context:
space:
mode:
authorMarvin Borner2023-11-16 14:06:33 +0100
committerMarvin Borner2023-11-30 18:11:46 +0100
commitb572418b4a4f6ba647a9aaed0bd82bfe9189d9a8 (patch)
treee9b6752799880545d333677b6996fec34b887100 /docs/wiki_src
parent9d5575592fcafe77eeaf9971d3f3763d512ef86a (diff)
Minor highlighting fixes
Diffstat (limited to 'docs/wiki_src')
-rw-r--r--docs/wiki_src/coding/recursion.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/wiki_src/coding/recursion.md b/docs/wiki_src/coding/recursion.md
index 9625ef9..5a3ab85 100644
--- a/docs/wiki_src/coding/recursion.md
+++ b/docs/wiki_src/coding/recursion.md
@@ -14,13 +14,11 @@ recursion.
Say we want a function `g`{.bruijn} to be able to call itself. With the
`y`{.bruijn} combinator the following equivalence is obtained:
-``` bruijn
- (y g)
-⤳ [[1 (0 0)] [1 (0 0)]] g
-⤳ [g (0 0)] [g (0 0)]
-⤳ g ([g (0 0)] [g (0 0)])
-≡ g (y g)
-```
+ (y g)
+ ⤳ [[1 (0 0)] [1 (0 0)]] g
+ ⤳ [g (0 0)] [g (0 0)]
+ ⤳ g ([g (0 0)] [g (0 0)])
+ ≡ g (y g)
With this equivalence, `g`{.bruijn} is able to call itself since its
outer argument is the initial function again.