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 50a468da7a2d03db9e952fe116658d1fba120a9a Author: Jamie Bliss <[email protected]> AuthorDate: Mon Feb 17 16:57:24 2025 -0500 Fix syntax --- src/docs/src/ddocs/mango.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/docs/src/ddocs/mango.rst b/src/docs/src/ddocs/mango.rst index 522454c4b..a63d3631c 100644 --- a/src/docs/src/ddocs/mango.rst +++ b/src/docs/src/ddocs/mango.rst @@ -727,7 +727,7 @@ 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. -.. _ddoc/mango/indexes +.. _ddoc/mango/indexes: Indexes ======= @@ -902,8 +902,10 @@ Example index: A Nouveau index definition consists of: * **fields**: ``"all_fields"`` or list of objects: - * **name** (`string`): not blank - * **type** (`string`): one of ``"text"``, ``"string"``, ``"number"``, ``"boolean"`` + + * **name** (`string`): not blank + * **type** (`string`): one of ``"text"``, ``"string"``, ``"number"``, ``"boolean"`` + * **default_analyzer** (`string`): Nouveau analyzer to use, defaults to ``"keyword"`` * **default_field**: boolean or object of ``enabled`` and ``analyzer`` * **partial_filter_selector** (`object`): A :ref:`selector<find/selectors>`, causing this
