Skip to content

Commit b114e8c

Browse files
committed
fix mismatched name
1 parent fdee208 commit b114e8c

File tree

1 file changed

+2
-2
lines changed
  • firestore/app/src/main/java/com/google/example/firestore/kotlin

1 file changed

+2
-2
lines changed

firestore/app/src/main/java/com/google/example/firestore/kotlin/DocSnippets.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,15 +1144,15 @@ abstract class DocSnippets(val db: FirebaseFirestore) {
11441144

11451145
fun orQuery() {
11461146
val collection = db.collection("cities")
1147-
// [START or_query]
1147+
// [START or_queries]
11481148
val query = collection.where(Filter.and(
11491149
Filter.equalTo("state", "CA"),
11501150
Filter.or(
11511151
Filter.equalTo("capital", true),
11521152
Filter.greaterThanOrEqualTo("population", 1000000)
11531153
)
11541154
))
1155-
// [END or_query]
1155+
// [END or_queries]
11561156
}
11571157

11581158
fun orQueryDisjunctions() {

0 commit comments

Comments
 (0)