diff --git a/util/item/yield.go b/util/item/yield.go index 77e504de..f7fbe357 100644 --- a/util/item/yield.go +++ b/util/item/yield.go @@ -35,8 +35,8 @@ func (this *Doc) Yield(output sql.Token, fallback sql.Token) (res interface{}) { res = this.initial.Data() case sql.BOTH: res = map[string]interface{}{ - "After": this.current.Data(), - "Before": this.initial.Data(), + "after": this.current.Data(), + "fefore": this.initial.Data(), } }