We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8842b4d commit 2c1b381Copy full SHA for 2c1b381
1 file changed
src/main/java/com/google/gcloud/datastore/StructuredQuery.java
@@ -65,7 +65,7 @@
65
* <p>A less trivial example of a projection query that returns the first 10 results
66
* of "age" and "name" properties (sorted and grouped by "age") with an age greater than 18
67
* <pre>{@code
68
- * Query<ProjectionEntity>; query = Query.projectionEntityQueryBuilder()
+ * Query<ProjectionEntity> query = Query.projectionEntityQueryBuilder()
69
* .kind(kind)
70
* .projection(Projection.property("age"), Projection.first("name"))
71
* .filter(PropertyFilter.gt("age", 18))
0 commit comments