From 56d7956d98be54b07279ea3486e918cecf3eb36b Mon Sep 17 00:00:00 2001 From: Liam Thompson Date: Thu, 4 Sep 2025 13:01:21 +0200 Subject: [PATCH] [D0CS] Fix semantic_text example in mapping-reference/semantic-text.md (#134119) closes https://github.com/elastic/docs-content/issues/2755 --- .../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 d7e05d757777e..6e15e12094ad7 100644 --- a/docs/reference/elasticsearch/mapping-reference/semantic-text.md +++ b/docs/reference/elasticsearch/mapping-reference/semantic-text.md @@ -264,14 +264,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" + ] } ```