diff options
Diffstat (limited to 'src/parse/collection.rs')
| -rw-r--r-- | src/parse/collection.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/collection.rs b/src/parse/collection.rs index ca05b998..9addcef0 100644 --- a/src/parse/collection.rs +++ b/src/parse/collection.rs @@ -93,7 +93,7 @@ impl State { fn into_expr(self) -> Expr { match self { Self::Unknown => Expr::Array(vec![]), - Self::Expr(expr) => Expr::Group(Box::new(expr.v)), + Self::Expr(expr) => Expr::Group(Box::new(expr)), Self::Array(array) => Expr::Array(array), Self::Dict(dict) => Expr::Dict(dict), } |
