1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-08-13 19:52:52 +02:00

Fixed linting issue

This commit is contained in:
Tim Voronov
2019-09-07 02:02:25 -04:00
parent 04eea23e52
commit 7af241bbdc

View File

@@ -36,7 +36,7 @@ func (e *MemberExpression) Exec(ctx context.Context, scope *core.Scope) (core.Va
}
out := val
path := make([]core.Value, 1, 1)
path := make([]core.Value, 1)
for _, exp := range e.path {
segment, err := exp.Exec(ctx, scope)