fix javadocs for SearchExtensionSpec

This commit is contained in:
javanna 2016-08-12 20:30:08 +02:00 committed by Luca Cavanna
parent a4f4525955
commit 20e4fed65c
1 changed files with 2 additions and 2 deletions

View File

@ -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 <W> 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 <P> 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<W extends NamedWriteable, P> {