Skip to content

Commit 20e4fed

Browse files
committed
fix javadocs for SearchExtensionSpec
1 parent a4f4525 commit 20e4fed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/org/elasticsearch/plugins/SearchPlugin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ public QuerySpec(String name, Reader<T> reader, QueryParser<T> parser) {
143143
/**
144144
* Specification of search time behavior extension like a custom {@link MovAvgModel} or {@link ScoreFunction}.
145145
*
146-
* @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
146+
* @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
147147
* though, usually it is some sort of builder sent from the coordinating node to the data nodes executing the behavior
148-
* @param P the type of the parser for this spec. The parser runs on the coordinating node, converting {@link XContent} into the
148+
* @param <P> the type of the parser for this spec. The parser runs on the coordinating node, converting {@link XContent} into the
149149
* behavior to execute
150150
*/
151151
class SearchExtensionSpec<W extends NamedWriteable, P> {

0 commit comments

Comments
 (0)