diff options
Diffstat (limited to 'tests/typ/code/for.typ')
| -rw-r--r-- | tests/typ/code/for.typ | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/code/for.typ b/tests/typ/code/for.typ index 0785be71..63dab9b8 100644 --- a/tests/typ/code/for.typ +++ b/tests/typ/code/for.typ @@ -14,10 +14,10 @@ ] // Block body. -// Should output `[1st, 2nd, 3rd, 4th, 5th]`. +// Should output `[1st, 2nd, 3rd, 4th]`. { "[" - for v in (1, 2, 3, 4, 5) { + for v in (1, 2, 3, 4) { if v > 1 [, ] [#v] if v == 1 [st] |
