summaryrefslogtreecommitdiff
path: root/tests/typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ')
-rw-r--r--tests/typ/compiler/for.typ2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/typ/compiler/for.typ b/tests/typ/compiler/for.typ
index f525215f..72aaea20 100644
--- a/tests/typ/compiler/for.typ
+++ b/tests/typ/compiler/for.typ
@@ -8,7 +8,7 @@
#for x in () [Nope]
// Dictionary is traversed in insertion order.
-// Should output `Age: 2. Name: Typst.`.
+// Should output `Name: Typst. Age: 2.`.
#for (k, v) in (Name: "Typst", Age: 2) [
#k: #v.
]