From 38ea16095de93f9d254f54b3f5ce1cb791ee95d4 Mon Sep 17 00:00:00 2001 From: Dgray16 Date: Sun, 23 Feb 2025 20:41:58 +0200 Subject: [PATCH] Fix typo Signed-off-by: Dgray16 --- .../data/elasticsearch/core/query/SourceFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/springframework/data/elasticsearch/core/query/SourceFilter.java b/src/main/java/org/springframework/data/elasticsearch/core/query/SourceFilter.java index d981cf80b..150cffb77 100644 --- a/src/main/java/org/springframework/data/elasticsearch/core/query/SourceFilter.java +++ b/src/main/java/org/springframework/data/elasticsearch/core/query/SourceFilter.java @@ -20,7 +20,7 @@ /** * SourceFilter for providing includes and excludes. Using these helps in reducing the amount of data that is returned - * from Elasticsearch especially when the stored docuements are large and only some fields from these documents are + * from Elasticsearch especially when the stored documents are large and only some fields from these documents are * needed. If the SourceFilter includes the name of a property that has a different name mapped in Elasticsearch (see * {@link Field#name()} this will automatically be mapped. *