diff options
Diffstat (limited to 'src/model/methods.rs')
| -rw-r--r-- | src/model/methods.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/methods.rs b/src/model/methods.rs index 8155685c..3823df41 100644 --- a/src/model/methods.rs +++ b/src/model/methods.rs @@ -118,7 +118,7 @@ pub fn call( }, Value::Args(args) => match method { - "positional" => Value::Array(args.to_positional()), + "pos" => Value::Array(args.to_pos()), "named" => Value::Dict(args.to_named()), _ => return missing(), }, |
