From a6d90c1bf1e9fefa0af04206909a40e112d6bb14 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 30 Dec 2022 19:40:29 +0100 Subject: Numbering functions --- src/model/methods.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/model/methods.rs') 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(), }, -- cgit v1.2.3