From acb2bc70921cd7bc4242441a7ed21a65ab8538c6 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Wed, 9 Dec 2020 07:53:42 -0500 Subject: [PATCH] fix field name --- editor/src/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/src/ast.rs b/editor/src/ast.rs index d8c95208a1..b9188bb04b 100644 --- a/editor/src/ast.rs +++ b/editor/src/ast.rs @@ -97,7 +97,7 @@ pub enum Expr2 { List { list_var: Variable, // 4B - required for uniqueness of the list elem_var: Variable, // 4B - first_elem: PoolVec, // 8B + elems: PoolVec, // 8B }, If { cond_var: Variable, // 4B