We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8a9a7f commit 39c4f9cCopy full SHA for 39c4f9c
1 file changed
src/iceberg/expression/expression_visitor.h
@@ -253,9 +253,9 @@ class ICEBERG_EXPORT BoundVisitor : public ExpressionVisitor<R> {
253
254
/// \brief Traverse an expression tree with a visitor.
255
///
256
-/// This function traverses the given expression tree in postfix order (children
257
-/// before parents) and calls appropriate visitor methods for each node. Results
258
-/// from child nodes are passed to parent nodes.
+/// This function traverses the given expression tree in postorder traversal and calls
+/// appropriate visitor methods for each node. Results from child nodes are passed to
+/// parent nodes.
259
260
/// \tparam R The return type produced by the visitor
261
/// \tparam V The visitor type (must derive from ExpressionVisitor<R>)
0 commit comments