mirror of
https://github.com/typst/typst
synced 2025-07-04 19:22:53 +08:00
Fix formatting
This commit is contained in:
parent
463da08fba
commit
c9c921b877
@ -287,14 +287,13 @@ impl Dict {
|
|||||||
for (key, value) in self {
|
for (key, value) in self {
|
||||||
// choose how to pass parameters based on the function signature
|
// choose how to pass parameters based on the function signature
|
||||||
let mapped = if use_two_args {
|
let mapped = if use_two_args {
|
||||||
mapper.call(engine, context, [
|
mapper.call(engine, context, [Value::Str(key.clone()), value.clone()])?
|
||||||
Value::Str(key.clone()),
|
|
||||||
value.clone(),
|
|
||||||
])?
|
|
||||||
} else {
|
} else {
|
||||||
mapper.call(engine, context, [
|
mapper.call(
|
||||||
Value::Array(array![Value::Str(key.clone()), value]),
|
engine,
|
||||||
])?
|
context,
|
||||||
|
[Value::Array(array![Value::Str(key.clone()), value])],
|
||||||
|
)?
|
||||||
};
|
};
|
||||||
|
|
||||||
// check if the result is a dictionary key-value pair
|
// check if the result is a dictionary key-value pair
|
||||||
|
Loading…
x
Reference in New Issue
Block a user