summaryrefslogtreecommitdiff
path: root/tests/typ/utility/collection.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/utility/collection.typ')
-rw-r--r--tests/typ/utility/collection.typ6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/typ/utility/collection.typ b/tests/typ/utility/collection.typ
index 649be4f7..e8be07b5 100644
--- a/tests/typ/utility/collection.typ
+++ b/tests/typ/utility/collection.typ
@@ -24,7 +24,7 @@
#test(upper("Ελλάδα"), "ΕΛΛΆΔΑ")
---
-// Error: 8-9 expected string or template, found integer
+// Error: 8-9 expected string or content, found integer
#upper(1)
---
@@ -35,9 +35,9 @@
#test(sorted((2, 1, 3, 10, 5, 8, 6, -7, 2)), (-7, 1, 2, 2, 3, 5, 6, 8, 10))
---
-// Error: 9-21 cannot compare string with integer
+// Error: 9-21 cannot order string and integer
#sorted((1, 2, "ab"))
---
-// Error: 9-24 cannot compare template with template
+// Error: 9-24 cannot order content and content
#sorted(([Hi], [There]))