about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--jonesforth.f4
1 files changed, 2 insertions, 2 deletions
diff --git a/jonesforth.f b/jonesforth.f
index 18c3500..ce9449a 100644
--- a/jonesforth.f
+++ b/jonesforth.f
@@ -36,8 +36,8 @@
 : ∥) I ' BNZ , H - , ;                  / ( A ∥) does A until false /
 : 1∥) I ' BR , H - , ;                  / ( A 1∥) does A indefinitely /
 
-: (( I ' n! , [COMP] ( ;                / n (( A )) does A n times /
-: )) I ' n- , ' n , [COMP] ∥) ;
+: (( I ' n! , [COMP] ( ' n , [COMP] ∥ ; / n (( A )) does A n times /
+: )) I ' n- , [COMP] ) ;
 
 : ∇ I S { [COMP] ; | : } ;              / ∇ starts and ends definitions /