summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/array.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/compiler/array.typ')
-rw-r--r--tests/typ/compiler/array.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/compiler/array.typ b/tests/typ/compiler/array.typ
index 58c108a4..92d926a0 100644
--- a/tests/typ/compiler/array.typ
+++ b/tests/typ/compiler/array.typ
@@ -71,7 +71,7 @@
---
// Test bad lvalue.
-// Error: 2:3-2:15 type array has no method `yolo`
+// Error: 2:9-2:13 type array has no method `yolo`
#let array = (1, 2, 3)
#(array.yolo() = 4)
@@ -122,7 +122,7 @@
}
---
-// Error: 2:16-2:18 missing argument: index
+// Error: 2:2-2:18 missing argument: index
#let numbers = ()
#numbers.insert()