summaryrefslogtreecommitdiff
path: root/language
diff options
context:
space:
mode:
authorBrian Campbell2017-10-25 15:25:19 +0100
committerBrian Campbell2017-10-25 15:25:19 +0100
commit6bc59424449c6391224487a7435513cf18d08946 (patch)
tree8d46aaa11bfac0ad253609fe09a081f579a60989 /language
parentfd70c99777002114be5d14a89f169f6e239b9cac (diff)
parentc432deec5454a073c645352d9dec674be28fa568 (diff)
Merge branch 'experiments' into mono-experiments
Diffstat (limited to 'language')
-rw-r--r--language/l2.ott2
1 files changed, 1 insertions, 1 deletions
diff --git a/language/l2.ott b/language/l2.ott
index 579f26b3..f08b089b 100644
--- a/language/l2.ott
+++ b/language/l2.ott
@@ -682,7 +682,7 @@ exp :: 'E_' ::=
| if exp1 then exp2 :: S :: ifnoelse {{ ichlo [[ if exp1 then exp2 else ( ) ]] }}
| loop exp1 exp2 :: :: loop
| while exp1 do exp2 :: S :: while {{ ichlo [[ loop while exp1 exp2 ]] }}
- | repeat exp1 until exp2 S :: :: until {{ ichlo [[ loop until exp2 exp1 ]] }}
+ | repeat exp1 until exp2 :: S :: until {{ ichlo [[ loop until exp2 exp1 ]] }}
| foreach ( id from exp1 to exp2 by exp3 in order ) exp4 :: :: for {{ com loop }}
| foreach ( id from exp1 to exp2 by exp3 ) exp4 :: S :: forup {{ ichlo [[ foreach id from exp1 to exp2 by exp3 in inc exp4 ]] }}
| foreach ( id from exp1 to exp2 ) exp3 :: S :: forupbyone {{ ichlo [[ foreach id from exp1 to exp2 by 1 in inc exp4 ]] }}