From ce95f0372d292b05adb94f19269bb86dd502382f Mon Sep 17 00:00:00 2001 From: Liam Thompson Date: Thu, 4 Sep 2025 11:59:41 +0200 Subject: [PATCH] [D0CS] Fix semantic_text example in mapping-reference/semantic-text.md --- .../mapping-reference/semantic-text.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/reference/elasticsearch/mapping-reference/semantic-text.md b/docs/reference/elasticsearch/mapping-reference/semantic-text.md index 17903e6f94f05..943805256a381 100644 --- a/docs/reference/elasticsearch/mapping-reference/semantic-text.md +++ b/docs/reference/elasticsearch/mapping-reference/semantic-text.md @@ -530,14 +530,14 @@ inference data that `semantic_text` typically hides using `fields`. ```console POST test-index/_search { - "query": { - "match": { - "my_semantic_field": "Which country is Paris in?" - }, - "fields": [ - "_inference_fields" - ] + "query": { + "match": { + "my_semantic_field": "Which country is Paris in?" } + }, + "fields": [ + "_inference_fields" + ] } ```