From 14349ea8b80f46c4219d20f5017a74cff1707b09 Mon Sep 17 00:00:00 2001 From: MarkDacek Date: Tue, 9 Aug 2022 14:38:16 +0000 Subject: [PATCH] Fix misspelling. Oversight from the CL split after rebasing. Test: N/A Change-Id: I164990624e54bc234f5b9802345addd459e2c249 --- parser/ast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/ast.go b/parser/ast.go index a1ffa3b..c3244cf 100644 --- a/parser/ast.go +++ b/parser/ast.go @@ -138,7 +138,7 @@ type Expression interface { // Copy returns a copy of the Expression that will not affect the original if mutated Copy() Expression String() string - // Type returns the underlying Type enum of the Expression if it were to be evalutated + // Type returns the underlying Type enum of the Expression if it were to be evaluated Type() Type // Eval returns an expression that is fully evaluated to a simple type (List, Map, String, or // Bool). It will return the same object for every call to Eval().