summaryrefslogtreecommitdiff
path: root/tests/typ/utility/basics.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/utility/basics.typ')
-rw-r--r--tests/typ/utility/basics.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/utility/basics.typ b/tests/typ/utility/basics.typ
index 304fe769..7fccc781 100644
--- a/tests/typ/utility/basics.typ
+++ b/tests/typ/utility/basics.typ
@@ -36,7 +36,7 @@
#test("(" + join("a", "b", "c", sep: ", ") + ")", "(a, b, c)")
---
-// Test joining templates.
+// Test content joining.
// Ref: true
#join([One], [Two], [Three], sep: [, ]).
@@ -72,7 +72,7 @@
#float(float)
---
-// Error: 6-8 cannot convert template to string
+// Error: 6-8 cannot convert content to string
#str([])
---