| Index: service/datastore/finalized_query.go
|
| diff --git a/service/datastore/finalized_query.go b/service/datastore/finalized_query.go
|
| index 8a6d75725dc054ef419ee23b5c0f38bd01bcf762..3d453aa4831dc0cc28ee82ad297e6bd67d76bdbc 100644
|
| --- a/service/datastore/finalized_query.go
|
| +++ b/service/datastore/finalized_query.go
|
| @@ -153,7 +153,7 @@ func (q *FinalizedQuery) IneqFilterProp() string {
|
|
|
| // IneqFilterLow returns the field name, operator and value for the low-side
|
| // inequality filter. If the returned field name is "", it means that there's
|
| -// now lower inequality bound on this query.
|
| +// no lower inequality bound on this query.
|
| //
|
| // If field is non-empty, op may have the values ">" or ">=".
|
| func (q *FinalizedQuery) IneqFilterLow() (field, op string, val Property) {
|
| @@ -170,7 +170,7 @@ func (q *FinalizedQuery) IneqFilterLow() (field, op string, val Property) {
|
|
|
| // IneqFilterHigh returns the field name, operator and value for the high-side
|
| // inequality filter. If the returned field name is "", it means that there's
|
| -// now upper inequality bound on this query.
|
| +// no upper inequality bound on this query.
|
| //
|
| // If field is non-empty, op may have the values "<" or "<=".
|
| func (q *FinalizedQuery) IneqFilterHigh() (field, op string, val Property) {
|
|
|