summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHÃ¥vard Pettersen <3535158+havardpe@users.noreply.github.com>2021-11-08 11:07:04 +0100
committerGitHub <noreply@github.com>2021-11-08 11:07:04 +0100
commit86c20f070f5c9f5b286c86c7c08ed07d57482db4 (patch)
tree346b61756fc55b97063cffb1da4acba65e7a58e0
parentc258dd2c52d3488bc2dea6cb28c8797405985cf6 (diff)
parent4cc7fe3b8688e84909fbf050ad6fb0ec187b945a (diff)
Merge pull request #19907 from vespa-engine/arnej/fix-copy-paste-bugs
fix two missing replacements after copy-paste
-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);