summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-11-08 09:45:58 +0000
committerArne H Juul <arnej@yahooinc.com>2021-11-08 09:45:58 +0000
commit4cc7fe3b8688e84909fbf050ad6fb0ec187b945a (patch)
treeb43aca7cc75a16ef0978c5fa7e934415f785c95d /config-model
parentc9e43f52573c6bea9ef8da0700cda0b479f5dbd4 (diff)
fix two missing replacements after copy-paste
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/RankProfile.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/RankProfile.java b/config-model/src/main/java/com/yahoo/searchdefinition/RankProfile.java
index 7b30e81badb..52fd5286bcf 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/RankProfile.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/RankProfile.java
@@ -526,7 +526,7 @@ public class RankProfile implements Cloneable {
* Without setting this, this will either have the match features of the parent,
* or if match features are set in this, only have the match features in this.
* With this set the resulting match features of this will be the superset of those defined in this and
- * the final (with inheritance included) summary features of the given parent.
+ * the final (with inheritance included) match features of the given parent.
* The profile must be the profile which is directly inherited by this.
*
*/
@@ -556,7 +556,7 @@ public class RankProfile implements Cloneable {
matchFeatures.add(feature);
}
- /** Adds the content of the given feature list to the internal list of summary features. */
+ /** Adds the content of the given feature list to the internal list of match features. */
public void addMatchFeatures(FeatureList features) {
for (ReferenceNode feature : features) {
addMatchFeature(feature);