aboutsummaryrefslogtreecommitdiff
path: root/doc/control.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/control.md')
-rw-r--r--doc/control.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/control.md b/doc/control.md
index c6cfcf11..b7e58436 100644
--- a/doc/control.md
+++ b/doc/control.md
@@ -223,7 +223,7 @@ To begin with, are you sure you don't want a for-each loop instead? In BQN that'
Fn¨ ↕n # for (𝕩=0; 𝕩<n; 𝕩++)
Fn¨ k↓↕n # for (𝕩=k; 𝕩<n; 𝕩++) with 0≤k
Fn¨ k+↕n-k # for (𝕩=k; 𝕩<n; 𝕩++) with k≤n
- Fn¨ ⌽n # for (𝕩=n; --𝕩; )
+ Fn¨ ⌽↕n # for (𝕩=n; --𝕩; )
Very well… a for loop is just a while loop with some extra pre- and post-actions.