This is an automated email from the ASF dual-hosted git repository.
pgj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 682f512d6 docs(find): add missing negation on talking about field
mismatch
682f512d6 is described below
commit 682f512d669b7a9610f615332d9f3ff99c100310
Author: Gabor Pali <[email protected]>
AuthorDate: Wed Oct 25 16:54:28 2023 +0200
docs(find): add missing negation on talking about field mismatch
The description of the `field_mismatch` reason code is missing a
"not" in the documentation of the `/{db}/_explain` endpoint hence
it has the opposite meaning.
---
src/docs/src/api/database/find.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/docs/src/api/database/find.rst
b/src/docs/src/api/database/find.rst
index c707a1c1e..d25350708 100644
--- a/src/docs/src/api/database/find.rst
+++ b/src/docs/src/api/database/find.rst
@@ -1675,8 +1675,8 @@ reason code.
| | | specify the index.
|
+--------------------------------+------------+------------------------------------------+
| ``field_mismatch`` | any | Fields in ``"selector"`` of
the query do |
-| | | match with the fields
available in the |
-| | | index.
|
+| | | not match with the fields
available in |
+| | | the index.
|
+--------------------------------+------------+------------------------------------------+
| ``is_partial`` | json, text | Partial indexes can be
selected only |
| | | manually.
|