aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--container-search/src/main/java/com/yahoo/prelude/query/Item.java3
-rw-r--r--document/src/main/java/com/yahoo/document/select/rule/DocumentTypeNode.java2
2 files changed, 1 insertions, 4 deletions
diff --git a/container-search/src/main/java/com/yahoo/prelude/query/Item.java b/container-search/src/main/java/com/yahoo/prelude/query/Item.java
index 41d897b8d83..92b321adb70 100644
--- a/container-search/src/main/java/com/yahoo/prelude/query/Item.java
+++ b/container-search/src/main/java/com/yahoo/prelude/query/Item.java
@@ -317,9 +317,6 @@ public abstract class Item implements Cloneable {
* ([itemName] [body])
* </pre>
* where the body may recursively be other items.
- *
- * <p>
- * TODO (Vespa 8?): Output YQL
*/
@Override
public String toString() {
diff --git a/document/src/main/java/com/yahoo/document/select/rule/DocumentTypeNode.java b/document/src/main/java/com/yahoo/document/select/rule/DocumentTypeNode.java
index 5bf62009797..57bb809de40 100644
--- a/document/src/main/java/com/yahoo/document/select/rule/DocumentTypeNode.java
+++ b/document/src/main/java/com/yahoo/document/select/rule/DocumentTypeNode.java
@@ -13,7 +13,7 @@ import com.yahoo.document.select.Context;
import com.yahoo.document.select.Visitor;
/**
- * A document type node which returns the document type if exactly the type sopecified or false otherwise:
+ * A document type node which returns the document type if exactly the type specified or false otherwise:
* For using the exact document type as a condition.
*
* @author bratseth