aboutsummaryrefslogtreecommitdiffstats
path: root/askama_parser/src/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'askama_parser/src/node.rs')
-rw-r--r--askama_parser/src/node.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_parser/src/node.rs b/askama_parser/src/node.rs
index 8f07a43..4e916fc 100644
--- a/askama_parser/src/node.rs
+++ b/askama_parser/src/node.rs
@@ -96,7 +96,7 @@ impl<'a> Node<'a> {
cut(tuple((
opt(tuple((ws(identifier), ws(tag("::"))))),
ws(identifier),
- opt(ws(Expr::parse_arguments)),
+ opt(ws(Expr::arguments)),
opt(Whitespace::parse),
))),
));