Skip to content

Commit

Permalink
docs: Fix typo explaining conjunction filter (#1841)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettwillis authored Apr 11, 2023
1 parent 818ff94 commit 87c05a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/src/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export abstract class Filter {
/**
* Creates and returns a new [Filter]{@link Filter} that is a
* conjunction of the given {@link Filter}s. A conjunction filter includes
* a document if it satisfies any of the given {@link Filter}s.
* a document if it satisfies all of the given {@link Filter}s.
*
* The returned Filter can be applied to [Query.where()]{@link Query#where},
* [Filter.or()]{@link Filter#or}, or [Filter.and()]{@link Filter#and}. When
Expand Down
2 changes: 1 addition & 1 deletion types/firestore.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2513,7 +2513,7 @@ declare namespace FirebaseFirestore {
/**
* Creates and returns a new [Filter]{@link Filter} that is a
* conjunction of the given {@link Filter}s. A conjunction filter includes
* a document if it satisfies any of the given {@link Filter}s.
* a document if it satisfies all of the given {@link Filter}s.
*
* The returned Filter can be applied to [Query.where()]{@link Query#where},
* [Filter.or()]{@link Filter#or}, or [Filter.and()]{@link Filter#and}. When
Expand Down

0 comments on commit 87c05a0

Please sign in to comment.