lang: ast: Add missing backtick

Purely a formatting fix.
This commit is contained in:
James Shubin
2023-11-04 16:57:41 -04:00
parent 6cc5adcd25
commit eaff060bf9

View File

@@ -747,7 +747,7 @@ func (obj *StmtRes) resource(table map[interfaces.Func]types.Value, resName stri
return nil, errwrap.Wrapf(err, "resource field `%s` has no compatible type", x.Field) return nil, errwrap.Wrapf(err, "resource field `%s` has no compatible type", x.Field)
} }
if err := t.Cmp(typ); err != nil { if err := t.Cmp(typ); err != nil {
return nil, errwrap.Wrapf(err, "resource field `%s` of type `%+v`, cannot take type `%+v", x.Field, t, typ) return nil, errwrap.Wrapf(err, "resource field `%s` of type `%+v`, cannot take type `%+v`", x.Field, t, typ)
} }
if x.valuePtr == nil { if x.valuePtr == nil {