aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/querynode.h
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2023-11-30 12:33:06 +0100
committerTor Egge <Tor.Egge@online.no>2023-11-30 12:33:06 +0100
commitc720e5e0fd0602099432d9f950ccc83fcc4d831c (patch)
tree8ed0a2900dde009aed3267e26dd14b19c61f5a37 /searchlib/src/vespa/searchlib/query/streaming/querynode.h
parent690f060bf5b5b5a22d747ecd5c8a66179dd4bd58 (diff)
Standard plural of leaf is leaves.
Diffstat (limited to 'searchlib/src/vespa/searchlib/query/streaming/querynode.h')
-rw-r--r--searchlib/src/vespa/searchlib/query/streaming/querynode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/query/streaming/querynode.h b/searchlib/src/vespa/searchlib/query/streaming/querynode.h
index fe876ac55d2..36abc2f7db5 100644
--- a/searchlib/src/vespa/searchlib/query/streaming/querynode.h
+++ b/searchlib/src/vespa/searchlib/query/streaming/querynode.h
@@ -41,9 +41,9 @@ class QueryNode
/// Clears all the hitlists so the query tree can be reused.
virtual void reset() = 0;
/// Gives you all leafs of this tree.
- virtual void getLeafs(QueryTermList & tl) = 0;
+ virtual void getLeaves(QueryTermList & tl) = 0;
/// Gives you all leafs of this tree. Indicating that they are all const.
- virtual void getLeafs(ConstQueryTermList & tl) const = 0;
+ virtual void getLeaves(ConstQueryTermList & tl) const = 0;
/// Gives you all phrases of this tree.
virtual void getPhrases(QueryNodeRefList & tl) = 0;
/// Gives you all phrases of this tree. Indicating that they are all const.