Skip to content

Commit 2c1b381

Browse files
committed
Update StructuredQuery.java
1 parent 8842b4d commit 2c1b381

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/google/gcloud/datastore/StructuredQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* <p>A less trivial example of a projection query that returns the first 10 results
6666
* of "age" and "name" properties (sorted and grouped by "age") with an age greater than 18
6767
* <pre>{@code
68-
* Query<ProjectionEntity>; query = Query.projectionEntityQueryBuilder()
68+
* Query<ProjectionEntity> query = Query.projectionEntityQueryBuilder()
6969
* .kind(kind)
7070
* .projection(Projection.property("age"), Projection.first("name"))
7171
* .filter(PropertyFilter.gt("age", 18))

0 commit comments

Comments
 (0)