Skip to content

Commit 567697e

Browse files
authored
samples(fix): correcting aggregation value in comment in Avg aggregation sample (#1179)
1 parent b16c0a7 commit 567697e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/snippets/src/main/java/com/example/datastore/aggregation/AvgAggregationWithPropertyFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static void invoke() {
6868
Iterables.getOnlyElement(datastore.runAggregation(customer1SalesAvg));
6969

7070
System.out.printf(
71-
"Customer 1 sales avg is %d", customer1SalesAvgQueryResult.getLong("total_sales")); // 184
71+
"Customer 1 sales avg is %d", customer1SalesAvgQueryResult.getLong("total_sales")); // 92
7272
}
7373
}
7474
// [END datastore_avg_aggregation_query_with_filters]

0 commit comments

Comments
 (0)