Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Unified Diff: service/datastore/finalized_query.go

Issue 1957953002: Add cloud datastore implementation. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Adjust minimum coverage. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pre-commit-go.yml ('k') | service/datastore/raw_interface.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/datastore/finalized_query.go
diff --git a/service/datastore/finalized_query.go b/service/datastore/finalized_query.go
index cb1b525cec4fd0e79f60efc780b51cac896f2a68..d2762881e04008c69e6b2674d3c17c45ff20d4ed 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) {
« no previous file with comments | « pre-commit-go.yml ('k') | service/datastore/raw_interface.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698