Skip to content

Commit 87c05a0

Browse files
authored
docs: Fix typo explaining conjunction filter (#1841)
1 parent 818ff94 commit 87c05a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/src/filter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export abstract class Filter {
9494
/**
9595
* Creates and returns a new [Filter]{@link Filter} that is a
9696
* conjunction of the given {@link Filter}s. A conjunction filter includes
97-
* a document if it satisfies any of the given {@link Filter}s.
97+
* a document if it satisfies all of the given {@link Filter}s.
9898
*
9999
* The returned Filter can be applied to [Query.where()]{@link Query#where},
100100
* [Filter.or()]{@link Filter#or}, or [Filter.and()]{@link Filter#and}. When

types/firestore.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2513,7 +2513,7 @@ declare namespace FirebaseFirestore {
25132513
/**
25142514
* Creates and returns a new [Filter]{@link Filter} that is a
25152515
* conjunction of the given {@link Filter}s. A conjunction filter includes
2516-
* a document if it satisfies any of the given {@link Filter}s.
2516+
* a document if it satisfies all of the given {@link Filter}s.
25172517
*
25182518
* The returned Filter can be applied to [Query.where()]{@link Query#where},
25192519
* [Filter.or()]{@link Filter#or}, or [Filter.and()]{@link Filter#and}. When

0 commit comments

Comments
 (0)