From 20e4fed65c61818ef1dd96d7e710f6e838bff0fc Mon Sep 17 00:00:00 2001 From: javanna Date: Fri, 12 Aug 2016 20:30:08 +0200 Subject: [PATCH] fix javadocs for SearchExtensionSpec --- .../src/main/java/org/elasticsearch/plugins/SearchPlugin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/elasticsearch/plugins/SearchPlugin.java b/core/src/main/java/org/elasticsearch/plugins/SearchPlugin.java index 877ec6cbc1d..c88f12ccf72 100644 --- a/core/src/main/java/org/elasticsearch/plugins/SearchPlugin.java +++ b/core/src/main/java/org/elasticsearch/plugins/SearchPlugin.java @@ -143,9 +143,9 @@ public interface SearchPlugin { /** * Specification of search time behavior extension like a custom {@link MovAvgModel} or {@link ScoreFunction}. * - * @param W the type of the main {@link NamedWriteable} for this spec. All specs have this but it isn't always *for* the same thing + * @param the type of the main {@link NamedWriteable} for this spec. All specs have this but it isn't always *for* the same thing * though, usually it is some sort of builder sent from the coordinating node to the data nodes executing the behavior - * @param P the type of the parser for this spec. The parser runs on the coordinating node, converting {@link XContent} into the + * @param

the type of the parser for this spec. The parser runs on the coordinating node, converting {@link XContent} into the * behavior to execute */ class SearchExtensionSpec {