Fix misspelling. Oversight from the CL split after rebasing.

Test: N/A

Change-Id: I164990624e54bc234f5b9802345addd459e2c249
This commit is contained in:
MarkDacek 2022-08-09 14:38:16 +00:00
parent 856507f4d2
commit 14349ea8b8

View file

@ -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().