This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch merge-3.4.3 in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 92bcb00a68dc4b907bd2b7aa4830ea9944bc960e Author: Jamie Bliss <[email protected]> AuthorDate: Sat Feb 15 12:08:56 2025 -0500 Make linter happy --- src/docs/src/api/database/find.rst | 1 - src/docs/src/ddocs/mango.rst | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/docs/src/api/database/find.rst b/src/docs/src/api/database/find.rst index 7e5773622..0564df2f6 100644 --- a/src/docs/src/api/database/find.rst +++ b/src/docs/src/api/database/find.rst @@ -166,7 +166,6 @@ Example response when finding documents using an index: } } - .. _find/sort: Sort Syntax diff --git a/src/docs/src/ddocs/mango.rst b/src/docs/src/ddocs/mango.rst index eb894aaaa..b80b3d46a 100644 --- a/src/docs/src/ddocs/mango.rst +++ b/src/docs/src/ddocs/mango.rst @@ -50,7 +50,6 @@ of function or result. * Field names starting with ``$`` cannot be queried ("Invalid operator: $") * Fields at the root of the document starting with ``_`` cannot be queried ("Bad special document member: _") - .. _find/selectorbasics: Selector Basics @@ -690,14 +689,15 @@ operator. But it is not always the case: for example, comparison of strings is done with ICU and can can give surprising results if you were expecting ASCII ordering. See :ref:`views/collation` for more details. - Indexes ======= -Indexes are like indexes in most other database systems: they spend a little extra space to improve the performance of queries. - -They primarily consist of a list of fields to index, but can also contain a :ref:`selector <find/selector>` to create a :ref:`partial index <find/partial_index>`. +Indexes are like indexes in most other database systems: they spend a little +extra space to improve the performance of queries. +They primarily consist of a list of fields to index, but can also contain a +:ref:`selector <find/selector>` to create a +:ref:`partial index <find/partial_index>`. .. note:: Mango indexes have a type, currently ``json``, ``text``, ``nouveau``. This
