summaryrefslogtreecommitdiff
path: root/tests/typ/code/call.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-07-30 18:37:04 +0200
committerLaurenz <laurmaedje@gmail.com>2021-07-30 18:49:20 +0200
commite35fca54a0c5b3cd5251a58837e9c1ef2b6c3c6d (patch)
tree21afd717101000209cd35d07df8034864f29c41f /tests/typ/code/call.typ
parent1ee1d078e2480ddd08d40915bc7a74a8352acff0 (diff)
Change indent from 4 to 2 spaces
Diffstat (limited to 'tests/typ/code/call.typ')
-rw-r--r--tests/typ/code/call.typ14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/typ/code/call.typ b/tests/typ/code/call.typ
index 28ce860c..118382e4 100644
--- a/tests/typ/code/call.typ
+++ b/tests/typ/code/call.typ
@@ -25,8 +25,8 @@
// Test multiple wide calls in separate expressions inside a template.
[
- #font!(fill: eastern) - First
- #font!(fill: forest) - Second
+ #font!(fill: eastern) - First
+ #font!(fill: forest) - Second
]
// Test wide call in heading.
@@ -59,12 +59,12 @@ C
// Callee expressions.
{
- // Wrapped in parens.
- test((type)("hi"), "string")
+ // Wrapped in parens.
+ test((type)("hi"), "string")
- // Call the return value of a function.
- let adder(dx) = x => x + dx
- test(adder(2)(5), 7)
+ // Call the return value of a function.
+ let adder(dx) = x => x + dx
+ test(adder(2)(5), 7)
}
---