minor changes

This commit is contained in:
2024-07-11 06:53:14 +02:00
parent 990e04f957
commit e904003e6e
3 changed files with 39 additions and 3 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ func (term *term) value() any {
func (term *term) compute(ctx ExprContext) (v any, err error) {
if term.evalFunc == nil {
err = term.tk.Errorf("undefined eval-func for %q term", term.source())
err = term.Errorf("undefined eval-func for %q term", term.source())
} else {
v, err = term.evalFunc(ctx, term)
}