summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-11-20 14:46:37 +0100
committergjoranv <gv@oath.com>2019-01-21 15:09:27 +0100
commit81182050f567673fc3180764b3645fb76ca85dc5 (patch)
treecae51ade6b09ccbe7d316efb7b3d5b93e8bd3f18 /container-search/src/main/java/com
parent0fb27af8c2d6b8e5ebb0255e21c220a89ce05eba (diff)
Generate html5 javadoc
Diffstat (limited to 'container-search/src/main/java/com')
-rw-r--r--container-search/src/main/java/com/yahoo/search/grouping/result/BucketGroupId.java4
-rw-r--r--container-search/src/main/java/com/yahoo/search/grouping/result/ValueGroupId.java2
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/parser/ParserFactory.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/grouping/result/BucketGroupId.java b/container-search/src/main/java/com/yahoo/search/grouping/result/BucketGroupId.java
index 07729b4524a..e1f74df7172 100644
--- a/container-search/src/main/java/com/yahoo/search/grouping/result/BucketGroupId.java
+++ b/container-search/src/main/java/com/yahoo/search/grouping/result/BucketGroupId.java
@@ -30,9 +30,9 @@ public abstract class BucketGroupId<T> extends GroupId {
*
* @param type The type of this id's value.
* @param from The inclusive-from of the range.
- * @param fromImage The String representation of the <tt>from</tt> argument.
+ * @param fromImage The String representation of the <code>from</code> argument.
* @param to The exclusive-to of the range.
- * @param toImage The String representation of the <tt>to</tt> argument.
+ * @param toImage The String representation of the <code>to</code> argument.
*/
public BucketGroupId(String type, T from, String fromImage, T to, String toImage) {
super(type, fromImage, toImage);
diff --git a/container-search/src/main/java/com/yahoo/search/grouping/result/ValueGroupId.java b/container-search/src/main/java/com/yahoo/search/grouping/result/ValueGroupId.java
index bebd3fd85b0..a76af885180 100644
--- a/container-search/src/main/java/com/yahoo/search/grouping/result/ValueGroupId.java
+++ b/container-search/src/main/java/com/yahoo/search/grouping/result/ValueGroupId.java
@@ -27,7 +27,7 @@ public abstract class ValueGroupId<T> extends GroupId {
*
* @param type The type of this id's value.
* @param value The identifying value.
- * @param valueImage The String representation of the <tt>value</tt> argument.
+ * @param valueImage The String representation of the <code>value</code> argument.
*/
public ValueGroupId(String type, T value, String valueImage) {
super(type, valueImage);
diff --git a/container-search/src/main/java/com/yahoo/search/query/parser/ParserFactory.java b/container-search/src/main/java/com/yahoo/search/query/parser/ParserFactory.java
index 69d46527255..a57c0f98b45 100644
--- a/container-search/src/main/java/com/yahoo/search/query/parser/ParserFactory.java
+++ b/container-search/src/main/java/com/yahoo/search/query/parser/ParserFactory.java
@@ -18,7 +18,7 @@ public final class ParserFactory {
}
/**
- * Creates a {@link Parser} appropriate for the given <tt>Query.Type</tt>, providing the Parser with access to
+ * Creates a {@link Parser} appropriate for the given <code>Query.Type</code>, providing the Parser with access to
* the {@link ParserEnvironment} given.
*
* @param type the query type for which to create a Parser